Home
last modified time | relevance | path

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

/NW4C-1.3.3/sources/libraries/lyt/
Dlyt_FontContainer.cpp45 void* drawBuffer = pResFont->GetDrawBuffer(); in ~FontRefLink() local
46 if (drawBuffer != NULL) in ~FontRefLink()
49 Layout::FreeMemory(drawBuffer); in ~FontRefLink()
Dlyt_ResourceAccessor.cpp86 void* drawBuffer = Layout::AllocMemory(drawBufferSize, 4); in LoadFont() local
87 pResFont->SetDrawBuffer(drawBuffer); in LoadFont()
/NW4C-1.3.3/demos/font/OldResFont/sources/
Dmain.cpp192 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/
Dmain.cpp241 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/
Ddemolib.cpp195 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/
Ddemo_GraphicsDrawing.cpp359 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/
Dfont_CharWriter.cpp554 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/
Dfont_CharWriter.h537 void* drawBuffer,
/NW4C-1.3.3/include/nw/demo/
Ddemo_GraphicsDrawing.h426 void* drawBuffer,