Home
last modified time | relevance | path

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

/NW4C-2.0.3/sources/libraries/lyt/
Dlyt_FontContainer.cpp47 void* drawBuffer = pResFont->GetDrawBuffer(); in ~FontRefLink() local
48 if (drawBuffer != NULL) in ~FontRefLink()
51 Layout::FreeMemory(drawBuffer); in ~FontRefLink()
Dlyt_ResourceAccessor.cpp88 void* drawBuffer = Layout::AllocMemory(drawBufferSize, 4); in LoadFont() local
89 pResFont->SetDrawBuffer(drawBuffer); in LoadFont()
/NW4C-2.0.3/demos/font/OldResFont/sources/
Dmain.cpp194 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/
Dmain.cpp243 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/
Ddemolib.cpp197 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/
Ddemo_GraphicsDrawing.cpp361 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/
Dfont_CharWriter.cpp556 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/
Dfont_CharWriter.h539 void* drawBuffer,
/NW4C-2.0.3/include/nw/demo/
Ddemo_GraphicsDrawing.h428 void* drawBuffer,