| /NW4C-2.0.3/sources/libraries/gfx/ |
| D | gfx_Material.cpp | 147 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 …]
|
| D | gfx_ShaderBinaryInfo.cpp | 243 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/ |
| D | demo_CommandListSwapper.cpp | 72 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()
|
| D | demo_GraphicsSystem.cpp | 155 swapperDescription.bufferSize = description.commandBufferSize; in Create()
|
| /NW4C-2.0.3/include/nw/font/ |
| D | font_ArchiveFont.h | 83 u32 bufferSize, 99 u32 bufferSize,
|
| D | font_PackedFont.h | 143 u32 bufferSize, 160 u32 bufferSize, 501 u32 bufferSize,
|
| /NW4C-2.0.3/sources/libraries/font/ |
| D | font_ArchiveFont.cpp | 166 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()
|
| D | font_PackedFont.cpp | 267 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/ |
| D | lyt_GraphicsResource.cpp | 244 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/ |
| D | gfx_ShaderBinaryInfo.h | 96 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/ |
| D | os_Memory.h | 301 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/ |
| D | main.cpp | 310 GLsizei bufferSize; member 329 &pCmdListInfo->bufferSize, in StopCmdListSave() 353 cmdListInfo.bufferSize, in UseSavedCmdlist()
|
| /NW4C-2.0.3/include/nw/demo/ |
| D | demo_CommandListSwapper.h | 50 size_t bufferSize; //!< 1つのコマンドリストのバッファサイズです。 member
|
| /NW4C-2.0.3/demos/gfx/LowLayerDemo/sources/ |
| D | LowLayerDemo.cpp | 197 commandListSwapperDescription.bufferSize = COMMAND_BUFFER_SIZE; in InitializeGraphics()
|
| /NW4C-2.0.3/demos/gfx/LowLayerAnimationDemo/sources/ |
| D | LowLayerAnimationDemo.cpp | 208 commandListSwapperDescription.bufferSize = COMMAND_BUFFER_SIZE; in InitializeGraphics()
|
| /NW4C-2.0.3/demos/gfx/ParticleLowLayerDemo/sources/ |
| D | ParticleLowLayerDemo.cpp | 209 commandListSwapperDescription.bufferSize = COMMAND_BUFFER_SIZE; in InitializeGraphics()
|