Home
last modified time | relevance | path

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

/NW4C-1.2.23/include/nw/font/
Dfont_DispStringBuffer.h58 u32 commandBufferSize; //!< 使用しているコマンドバッファサイズ member
90 return 0 == commandBufferSize; in IsCommandEmpty()
/NW4C-1.2.23/demos/Nw4cDemo/include/
DSmRenderSystem.h80 size_t commandBufferSize; //!< コマンドバッファのサイズを現します。 member
95 commandBufferSize(0x100000), in Description()
/NW4C-1.2.23/sources/libraries/font/
Dfont_RectDrawer.cpp30 …NW_ASSERT((pStrBuf)->commandBufferSize + (size) / sizeof(u32) <= (pStrBuf)->commandBufferCapacity)…
31 …std::memcpy(&(pStrBuf)->commandBuffer[(pStrBuf)->commandBufferSize], command, size ); …
32 (pStrBuf)->commandBufferSize += (size) / sizeof(u32)
35 NW_ASSERT((pStrBuf)->commandBufferSize + 2 <= (pStrBuf)->commandBufferCapacity); \
36 (pStrBuf)->commandBuffer[(pStrBuf)->commandBufferSize + 0] = (data); \
37 (pStrBuf)->commandBuffer[(pStrBuf)->commandBufferSize + 1] = (header); \
38 (pStrBuf)->commandBufferSize += 2
1454 pStringBuffer->commandBufferSize = 0; in BuildTextCommand()
1696 pStringBuffer->textColorCommandOffset = pStringBuffer->commandBufferSize; in UniformAndDrawText()
1737 u32* cmdPtr = &pStringBuffer->commandBuffer[pStringBuffer->commandBufferSize]; in UniformAndDrawText()
[all …]
Dfont_DispStringBuffer.cpp30 commandBufferSize(0), in DispStringBuffer()
/NW4C-1.2.23/sources/libraries/snd/
Dsnd_DriverCommandManager.cpp39 void DriverCommandManager::Initialize( void* commandBuffer, u32 commandBufferSize ) in Initialize() argument
51 m_CommandMemoryAreaSize = commandBufferSize / sizeof(m_CommandMemoryArea[0]); in Initialize()
/NW4C-1.2.23/include/nw/snd/
Dsnd_DriverCommandManager.h33 void Initialize( void* commandBuffer, u32 commandBufferSize );
/NW4C-1.2.23/include/nw/demo/
Ddemo_GraphicsSystem.h124 size_t commandBufferSize; //!< コマンドバッファのサイズを現します。 member
139 commandBufferSize(0x100000), in Description()
/NW4C-1.2.23/sources/libraries/demo/
Ddemo_GraphicsSystem.cpp150 swapperDescription.bufferSize = description.commandBufferSize; in Create()