Lines Matching refs:commandBufferSize
30 …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()
1739 pStringBuffer->commandBufferSize = cmdPtr - &pStringBuffer->commandBuffer[0]; in UniformAndDrawText()
1874 m_pDispStringBuffer->commandBufferSize * sizeof(u32)); in UseCommandBuffer()