Home
last modified time | relevance | path

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

/NW4C-1.2.23/sources/libraries/font/
Dfont_RectDrawer.cpp29 #define NW_FONT_ADD_COMMANDS( pStrBuf, command, size ) … argument
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)
34 #define NW_FONT_ADD_SINGLE_COMMAND( pStrBuf, header, data ) \ argument
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