Home
last modified time | relevance | path

Searched refs:commandBufferSize (Results 1 – 7 of 7) sorted by relevance

/NW4C-2.0.3/include/nw/font/
Dfont_DispStringBuffer.h60 u32 commandBufferSize; //!< 使用しているコマンドバッファサイズ member
92 return 0 == commandBufferSize; in IsCommandEmpty()
/NW4C-2.0.3/sources/libraries/font/
Dfont_RectDrawer.cpp32 …NW_ASSERT((pStrBuf)->commandBufferSize + (size) / sizeof(u32) <= (pStrBuf)->commandBufferCapacity)…
33 …std::memcpy(&(pStrBuf)->commandBuffer[(pStrBuf)->commandBufferSize], command, size ); …
34 (pStrBuf)->commandBufferSize += (size) / sizeof(u32)
37 NW_ASSERT((pStrBuf)->commandBufferSize + 2 <= (pStrBuf)->commandBufferCapacity); \
38 (pStrBuf)->commandBuffer[(pStrBuf)->commandBufferSize + 0] = (data); \
39 (pStrBuf)->commandBuffer[(pStrBuf)->commandBufferSize + 1] = (header); \
40 (pStrBuf)->commandBufferSize += 2
1484 pStringBuffer->commandBufferSize = 0; in BuildTextCommand()
1742 pStringBuffer->textColorCommandOffset = pStringBuffer->commandBufferSize; in UniformAndDrawText()
1783 u32* cmdPtr = &pStringBuffer->commandBuffer[pStringBuffer->commandBufferSize]; in UniformAndDrawText()
[all …]
Dfont_DispStringBuffer.cpp32 commandBufferSize(0), in DispStringBuffer()
/NW4C-2.0.3/sources/libraries/snd/
Dsnd_DriverCommandManager.cpp41 void DriverCommandManager::Initialize( void* commandBuffer, u32 commandBufferSize ) in Initialize() argument
53 m_CommandMemoryAreaSize = commandBufferSize / sizeof(m_CommandMemoryArea[0]); in Initialize()
/NW4C-2.0.3/include/nw/snd/
Dsnd_DriverCommandManager.h35 void Initialize( void* commandBuffer, u32 commandBufferSize );
/NW4C-2.0.3/include/nw/demo/
Ddemo_GraphicsSystem.h126 size_t commandBufferSize; //!< コマンドバッファのサイズを現します。 member
141 commandBufferSize(0x100000), in Description()
/NW4C-2.0.3/sources/libraries/demo/
Ddemo_GraphicsSystem.cpp155 swapperDescription.bufferSize = description.commandBufferSize; in Create()