Searched refs:drawBuffer (Results 1 – 9 of 9) sorted by relevance
| /NW4C-1.3.3/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.3.3/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.3.3/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.3.3/demos/snd/demolib/sources/ |
| D | demolib.cpp | 195 void* drawBuffer = MemAlloc( drawBufferSize, 4 ); in InitializeFont() local 196 NW_NULL_ASSERT(drawBuffer); in InitializeFont() 197 m_Font.SetDrawBuffer( drawBuffer ); in InitializeFont() 204 void *const drawBuffer = m_Font.SetDrawBuffer( NULL ); in FinalizeFont() local 205 if ( drawBuffer != NULL ) in FinalizeFont() 207 MemFree( drawBuffer ); in FinalizeFont()
|
| /NW4C-1.3.3/sources/libraries/demo/ |
| D | demo_GraphicsDrawing.cpp | 359 void* drawBuffer = allocator->Alloc(drawBufferSize, 4); in InitializeFont() local 360 NW_NULL_ASSERT(drawBuffer); in InitializeFont() 369 …itializeFontFromBinary( shaderBuffer, shaderSize, fontBuffer, fontSize, drawBuffer, stringBuffer ); in InitializeFont() 405 void* drawBuffer = allocator->Alloc(drawBufferSize, 4); in InitializeFont() local 406 NW_NULL_ASSERT(drawBuffer); in InitializeFont() 412 …itializeFontFromBinary( shaderBuffer, shaderSize, fontBinary, fontSize, drawBuffer, stringBuffer ); in InitializeFont() 433 void* drawBuffer = m_Font.SetDrawBuffer(NULL); in DestroyFont() local 441 os::SafeFree(drawBuffer, m_FontAllocator); in DestroyFont() 787 void* drawBuffer, in InitializeFontFromBinary() argument 802 m_Font.SetDrawBuffer(drawBuffer); in InitializeFontFromBinary()
|
| /NW4C-1.3.3/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.3.3/include/nw/font/ |
| D | font_CharWriter.h | 537 void* drawBuffer,
|
| /NW4C-1.3.3/include/nw/demo/ |
| D | demo_GraphicsDrawing.h | 426 void* drawBuffer,
|