Searched refs:drawBuffer (Results 1 – 9 of 9) sorted by relevance
| /NW4C-2.0.3/sources/libraries/lyt/ |
| D | lyt_FontContainer.cpp | 47 void* drawBuffer = pResFont->GetDrawBuffer(); in ~FontRefLink() local 48 if (drawBuffer != NULL) in ~FontRefLink() 51 Layout::FreeMemory(drawBuffer); in ~FontRefLink()
|
| D | lyt_ResourceAccessor.cpp | 88 void* drawBuffer = Layout::AllocMemory(drawBufferSize, 4); in LoadFont() local 89 pResFont->SetDrawBuffer(drawBuffer); in LoadFont()
|
| /NW4C-2.0.3/demos/font/OldResFont/sources/ |
| D | main.cpp | 194 void* drawBuffer = MemAlloc(drawBufferSize, 4); in InitFont() local 195 pFont->SetDrawBuffer(drawBuffer); in InitFont() 212 void *const drawBuffer = pFont->SetDrawBuffer(NULL); in CleanupFont() local 213 if (drawBuffer != NULL) in CleanupFont() 215 MemFree(drawBuffer); in CleanupFont()
|
| /NW4C-2.0.3/demos/font/ResFont/sources/ |
| D | main.cpp | 243 void* drawBuffer = MemAlloc(drawBufferSize, 4); in InitFont() local 244 NN_NULL_ASSERT(drawBuffer); in InitFont() 245 pFont->SetDrawBuffer(drawBuffer); in InitFont() 261 void *const drawBuffer = pFont->SetDrawBuffer(NULL); in CleanupFont() local 262 if (drawBuffer != NULL) in CleanupFont() 264 MemFree(drawBuffer); in CleanupFont()
|
| /NW4C-2.0.3/demos/snd/demolib/sources/ |
| D | demolib.cpp | 197 void* drawBuffer = MemAlloc( drawBufferSize, 4 ); in InitializeFont() local 198 NW_NULL_ASSERT(drawBuffer); in InitializeFont() 199 m_Font.SetDrawBuffer( drawBuffer ); in InitializeFont() 206 void *const drawBuffer = m_Font.SetDrawBuffer( NULL ); in FinalizeFont() local 207 if ( drawBuffer != NULL ) in FinalizeFont() 209 MemFree( drawBuffer ); in FinalizeFont()
|
| /NW4C-2.0.3/sources/libraries/demo/ |
| D | demo_GraphicsDrawing.cpp | 361 void* drawBuffer = allocator->Alloc(drawBufferSize, 4); in InitializeFont() local 362 NW_NULL_ASSERT(drawBuffer); in InitializeFont() 371 …itializeFontFromBinary( shaderBuffer, shaderSize, fontBuffer, fontSize, drawBuffer, stringBuffer ); in InitializeFont() 407 void* drawBuffer = allocator->Alloc(drawBufferSize, 4); in InitializeFont() local 408 NW_NULL_ASSERT(drawBuffer); in InitializeFont() 414 …itializeFontFromBinary( shaderBuffer, shaderSize, fontBinary, fontSize, drawBuffer, stringBuffer ); in InitializeFont() 435 void* drawBuffer = m_Font.SetDrawBuffer(NULL); in DestroyFont() local 443 os::SafeFree(drawBuffer, m_FontAllocator); in DestroyFont() 789 void* drawBuffer, in InitializeFontFromBinary() argument 804 m_Font.SetDrawBuffer(drawBuffer); in InitializeFontFromBinary()
|
| /NW4C-2.0.3/sources/libraries/font/ |
| D | font_CharWriter.cpp | 556 void* drawBuffer, in InitDispStringBuffer() argument 560 NN_NULL_ASSERT(drawBuffer); in InitDispStringBuffer() 562 return new (drawBuffer) DispStringBuffer(charNum); in InitDispStringBuffer()
|
| /NW4C-2.0.3/include/nw/font/ |
| D | font_CharWriter.h | 539 void* drawBuffer,
|
| /NW4C-2.0.3/include/nw/demo/ |
| D | demo_GraphicsDrawing.h | 428 void* drawBuffer,
|