Lines Matching refs:m_output
32 leftPos = (m_Width - m_output->GetWidth()) / 2; in RenderDeviceResult()
33 topPos = (m_Height - m_output->GetHeight()) / 2; in RenderDeviceResult()
36 if (m_Width < m_output->GetWidth() && m_Height < m_output->GetHeight()) { in RenderDeviceResult()
37 CFX_Matrix matriScale((float)m_Width / (float)m_output->GetWidth(), 0.0, in RenderDeviceResult()
38 0.0, (float)m_Height / (float)m_output->GetHeight(), in RenderDeviceResult()
43 for (int32_t x = 0; x < m_output->GetWidth(); x++) { in RenderDeviceResult()
44 for (int32_t y = 0; y < m_output->GetHeight(); y++) { in RenderDeviceResult()
48 if (m_output->Get(x, y)) { in RenderDeviceResult()
97 m_output = pdfium::MakeUnique<CBC_CommonBitMatrix>(); in RenderResult()
98 m_output->Init(outputWidth, outputHeight); in RenderResult()
106 !m_output->SetRegion(outputX, outputY, multiX, multiY)) { in RenderResult()