Searched refs:drawBuffer (Results 1 – 9 of 9) sorted by relevance
| /NW4C-1.2.23/sources/libraries/lyt/ |
| D | lyt_FontContainer.cpp | 45 void* drawBuffer = pResFont->GetDrawBuffer(); in ~FontRefLink() local 46 if (drawBuffer != NULL) in ~FontRefLink() 49 Layout::FreeMemory(drawBuffer); in ~FontRefLink()
|
| D | lyt_ResourceAccessor.cpp | 86 void* drawBuffer = Layout::AllocMemory(drawBufferSize, 4); in LoadFont() local 87 pResFont->SetDrawBuffer(drawBuffer); in LoadFont()
|
| /NW4C-1.2.23/demos/font/OldResFont/sources/ |
| D | main.cpp | 192 void* drawBuffer = MemAlloc(drawBufferSize, 4); in InitFont() local 193 pFont->SetDrawBuffer(drawBuffer); in InitFont() 210 void *const drawBuffer = pFont->SetDrawBuffer(NULL); in CleanupFont() local 211 if (drawBuffer != NULL) in CleanupFont() 213 MemFree(drawBuffer); in CleanupFont()
|
| /NW4C-1.2.23/demos/font/ResFont/sources/ |
| D | main.cpp | 241 void* drawBuffer = MemAlloc(drawBufferSize, 4); in InitFont() local 242 NN_NULL_ASSERT(drawBuffer); in InitFont() 243 pFont->SetDrawBuffer(drawBuffer); in InitFont() 259 void *const drawBuffer = pFont->SetDrawBuffer(NULL); in CleanupFont() local 260 if (drawBuffer != NULL) in CleanupFont() 262 MemFree(drawBuffer); in CleanupFont()
|
| /NW4C-1.2.23/demos/snd/demolib/sources/ |
| D | demolib.cpp | 208 void* drawBuffer = MemAlloc( drawBufferSize, 4 ); in InitializeFont() local 209 NW_NULL_ASSERT(drawBuffer); in InitializeFont() 210 m_Font.SetDrawBuffer( drawBuffer ); in InitializeFont() 217 void *const drawBuffer = m_Font.SetDrawBuffer( NULL ); in FinalizeFont() local 218 if ( drawBuffer != NULL ) in FinalizeFont() 220 MemFree( drawBuffer ); in FinalizeFont()
|
| /NW4C-1.2.23/sources/libraries/demo/ |
| D | demo_GraphicsDrawing.cpp | 416 void* drawBuffer = allocator->Alloc(drawBufferSize, 4); in InitializeFont() local 417 NW_NULL_ASSERT(drawBuffer); in InitializeFont() 426 …result = this->InitializeFont( shaderBuffer, shaderSize, fontBuffer, fontSize, drawBuffer, stringB… in InitializeFont() 446 void* drawBuffer, in InitializeFont() argument 461 m_Font.SetDrawBuffer(drawBuffer); in InitializeFont() 504 void* drawBuffer = m_Font.SetDrawBuffer(NULL); in DestroyFont() local 508 os::SafeFree(drawBuffer, m_FontAllocator); in DestroyFont()
|
| /NW4C-1.2.23/sources/libraries/font/ |
| D | font_CharWriter.cpp | 554 void* drawBuffer, in InitDispStringBuffer() argument 558 NN_NULL_ASSERT(drawBuffer); in InitDispStringBuffer() 560 return new (drawBuffer) DispStringBuffer(charNum); in InitDispStringBuffer()
|
| /NW4C-1.2.23/include/nw/demo/ |
| D | demo_GraphicsDrawing.h | 317 …derBinary, size_t shaderSize, void* fontBinary, size_t fontSize, void* drawBuffer, void* stringBuf…
|
| /NW4C-1.2.23/include/nw/font/ |
| D | font_CharWriter.h | 537 void* drawBuffer,
|