Home
last modified time | relevance | path

Searched refs:bufferSize (Results 1 – 16 of 16) sorted by relevance

/NW4C-2.0.3/sources/libraries/gfx/
Dgfx_Material.cpp147 os::MemorySizeCalculator bufferSize(size.GetAlignment()); in GetMemorySizeInternal() local
149 bufferSize += sizeof(ResMaterialData); in GetMemorySizeInternal()
153 bufferSize += sizeof(ut::Offset) * resMaterial.GetShaderParametersCount(); in GetMemorySizeInternal()
159 bufferSize += sizeof(ResShaderParameterData) + sizeof(f32) * (parameterLength - 1); in GetMemorySizeInternal()
170 resTextureMapper.GetMemorySizeForCloneInternal(&bufferSize); in GetMemorySizeInternal()
180 resTextureMapper.GetMemorySizeForCloneInternal(&bufferSize); in GetMemorySizeInternal()
188 bufferSize += sizeof(ResFragmentShaderData); in GetMemorySizeInternal()
200 bufferSize += sizeof(ResFragmentLightingTableData); in GetMemorySizeInternal()
203 bufferSize += sizeof(ResLightingLookupTableData); in GetMemorySizeInternal()
204 bufferSize += sizeof(ResReferenceLookupTableData); in GetMemorySizeInternal()
[all …]
Dgfx_ShaderBinaryInfo.cpp243 ShaderBinaryInfo::BuildCommonCommand( u32* bufferAddress, u32 bufferSize ) const in BuildCommonCommand()
245 SafeBuffer buffer(bufferAddress, bufferSize); in BuildCommonCommand()
385 …haderProgramCommand( s32 vertexIndex, s32 geometryIndex, u32* bufferAddress, u32 bufferSize ) const in BuildShaderProgramCommand()
387 SafeBuffer buffer(bufferAddress, bufferSize); in BuildShaderProgramCommand()
/NW4C-2.0.3/sources/libraries/demo/
Ddemo_CommandListSwapper.cpp72 nngxCmdlistStorage(description.bufferSize, description.requestCount); in CommandListSwapper()
92 m_DumpCommandListBuffer = static_cast<u8*>(m_Allocator->Alloc(description.bufferSize)); in CommandListSwapper()
364 GLint bufferSize; in GetCommandBufferSize() local
366 nngxGetCmdlistParameteri(NN_GX_CMDLIST_USED_BUFSIZE, &bufferSize); in GetCommandBufferSize()
369 return static_cast<int>(bufferSize); in GetCommandBufferSize()
376 GLint bufferSize; in GetReusableCommandBufferSize() local
383 nngxGetCmdlistParameteri(NN_GX_CMDLIST_USED_BUFSIZE, &bufferSize); in GetReusableCommandBufferSize()
389 return static_cast<int>(bufferSize); in GetReusableCommandBufferSize()
Ddemo_GraphicsSystem.cpp155 swapperDescription.bufferSize = description.commandBufferSize; in Create()
/NW4C-2.0.3/include/nw/font/
Dfont_ArchiveFont.h83 u32 bufferSize,
99 u32 bufferSize,
Dfont_PackedFont.h143 u32 bufferSize,
160 u32 bufferSize,
501 u32 bufferSize,
/NW4C-2.0.3/sources/libraries/font/
Dfont_ArchiveFont.cpp166 u32 bufferSize, in InitStreamingConstruct() argument
173 NW_FONT_BUFFERSIZE_ASSERT(bufferSize); in InitStreamingConstruct()
176 pContext->Init( pBuffer, bufferSize, glyphGroups ); in InitStreamingConstruct()
260 u32 bufferSize, in Construct() argument
267 NW_FONT_BUFFERSIZE_ASSERT( bufferSize ); in Construct()
275 InitStreamingConstruct(&context, pBuffer, bufferSize, glyphGroups); in Construct()
Dfont_PackedFont.cpp267 u32 bufferSize, in Construct() argument
274 NW_FONT_BUFFERSIZE_ASSERT(bufferSize); in Construct()
283 InitStreamingConstruct(&context, pBuffer, bufferSize, glyphGroups); in Construct()
594 u32 bufferSize, in AssignMemory() argument
601 NW_FONT_BUFFERSIZE_ASSERT(bufferSize); in AssignMemory()
610 u32 varibaleAreaSize = bufferSize - sizeGlyphIndexAdjustArray in AssignMemory()
614 if (varibaleAreaSize > bufferSize) in AssignMemory()
839 const u32 bufferSize = pContext->GetRemain(); in ConstructOpAnalyzeGLGRPacked() local
861 reinterpret_cast<uptr>(pTempFileHead + bufferSize - sizeAdjustTable), 2)); in ConstructOpAnalyzeGLGRPacked()
862 if (bufferSize < (pTempGLGRTail - pTempFileHead) + sizeAdjustTable) in ConstructOpAnalyzeGLGRPacked()
[all …]
/NW4C-2.0.3/sources/libraries/lyt/
Dlyt_GraphicsResource.cpp244 size_t bufferSize = 0; in GetResourcePath() local
245 _wgetenv_s(&bufferSize, buff, FILENAME_MAX, L"NW4C_ROOT"); in GetResourcePath()
246 NW_ASSERT(bufferSize > 0); in GetResourcePath()
247 buff = StrCopy(buff + bufferSize - 1, sResourceFiles[i]); in GetResourcePath()
/NW4C-2.0.3/include/nw/gfx/
Dgfx_ShaderBinaryInfo.h96 s32 BuildCommonCommand( u32* bufferAddress, u32 bufferSize ) const;
108 u32 bufferSize = ut::GetOffsetFromPtr( currentBuffer, cmdBufferEnd ); in BuildCommonCommand() local
110 s32 result = this->BuildCommonCommand( currentBuffer, bufferSize ); in BuildCommonCommand()
140 …aderProgramCommand( s32 vertexIndex, s32 geometryIndex, u32* bufferAddress, u32 bufferSize ) const;
154 u32 bufferSize = ut::GetOffsetFromPtr( currentBuffer, cmdBufferEnd ); in BuildShaderProgramCommand() local
156 … result = this->BuildShaderProgramCommand( vertexIndex, geometryIndex, currentBuffer, bufferSize ); in BuildShaderProgramCommand()
/NW4C-2.0.3/include/nw/os/
Dos_Memory.h301 size_t bufferSize = length + 1; in AllocateAndCopyString() local
302 TChar* copyStr = reinterpret_cast<char*>(allocator->Alloc(bufferSize)); in AllocateAndCopyString()
304 NW_CHAR_TRAITS_COPY(TChar, copyStr, bufferSize, str, length); in AllocateAndCopyString()
/NW4C-2.0.3/demos/lyt/orthoStereo/sources/
Dmain.cpp310 GLsizei bufferSize; member
329 &pCmdListInfo->bufferSize, in StopCmdListSave()
353 cmdListInfo.bufferSize, in UseSavedCmdlist()
/NW4C-2.0.3/include/nw/demo/
Ddemo_CommandListSwapper.h50 size_t bufferSize; //!< 1つのコマンドリストのバッファサイズです。 member
/NW4C-2.0.3/demos/gfx/LowLayerDemo/sources/
DLowLayerDemo.cpp197 commandListSwapperDescription.bufferSize = COMMAND_BUFFER_SIZE; in InitializeGraphics()
/NW4C-2.0.3/demos/gfx/LowLayerAnimationDemo/sources/
DLowLayerAnimationDemo.cpp208 commandListSwapperDescription.bufferSize = COMMAND_BUFFER_SIZE; in InitializeGraphics()
/NW4C-2.0.3/demos/gfx/ParticleLowLayerDemo/sources/
DParticleLowLayerDemo.cpp209 commandListSwapperDescription.bufferSize = COMMAND_BUFFER_SIZE; in InitializeGraphics()