Home
last modified time | relevance | path

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

/NW4C-1.2.23/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.2.23/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.2.23/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.2.23/demos/snd/demolib/sources/
Ddemolib.cpp208 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/
Ddemo_GraphicsDrawing.cpp416 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/
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.2.23/include/nw/demo/
Ddemo_GraphicsDrawing.h317 …derBinary, size_t shaderSize, void* fontBinary, size_t fontSize, void* drawBuffer, void* stringBuf…
/NW4C-1.2.23/include/nw/font/
Dfont_CharWriter.h537 void* drawBuffer,