Lines Matching refs:pOutBitmap
228 void CBC_OneDimWriter::ShowBitmapChars(CFX_DIBitmap* pOutBitmap, in ShowBitmapChars() argument
247 geBitmap.Attach(pOutBitmap, false, nullptr, false); in ShowBitmapChars()
252 CFX_DIBitmap* pOutBitmap, in ShowChars() argument
258 if (!device && !pOutBitmap) { in ShowChars()
314 ShowBitmapChars(pOutBitmap, str, geWidth, pCharPos, (FX_FLOAT)locX, in ShowChars()
320 void CBC_OneDimWriter::RenderBitmapResult(CFX_DIBitmap*& pOutBitmap, in RenderBitmapResult() argument
327 pOutBitmap = CreateDIBitmap(m_output->GetWidth(), m_output->GetHeight()); in RenderBitmapResult()
328 pOutBitmap->Clear(m_backgroundColor); in RenderBitmapResult()
329 if (!pOutBitmap) { in RenderBitmapResult()
336 pOutBitmap->SetPixel(x, y, m_barColor); in RenderBitmapResult()
346 ShowChars(contents, pOutBitmap, nullptr, nullptr, m_barWidth, m_multiple, in RenderBitmapResult()
352 pOutBitmap->StretchTo(m_Width, m_Height); in RenderBitmapResult()
353 delete pOutBitmap; in RenderBitmapResult()
354 pOutBitmap = pStretchBitmap.release(); in RenderBitmapResult()