Home
last modified time | relevance | path

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

/NW4C-2.0.3/sources/libraries/font/
Dfont_RectDrawer.cpp31 #define NW_FONT_ADD_COMMANDS( pStrBuf, command, size ) … argument
32 …NW_ASSERT((pStrBuf)->commandBufferSize + (size) / sizeof(u32) <= (pStrBuf)->commandBufferCapacity)…
33 …std::memcpy(&(pStrBuf)->commandBuffer[(pStrBuf)->commandBufferSize], command, size ); …
34 (pStrBuf)->commandBufferSize += (size) / sizeof(u32)
36 #define NW_FONT_ADD_SINGLE_COMMAND( pStrBuf, header, data ) \ argument
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