Lines Matching refs:m_output
18 m_output = NULL; in CBC_TwoDimWriter()
21 if (m_output != NULL) { in ~CBC_TwoDimWriter()
22 delete m_output; in ~CBC_TwoDimWriter()
23 m_output = NULL; in ~CBC_TwoDimWriter()
36 leftPos = (m_Width - m_output->GetWidth()) / 2; in RenderDeviceResult()
37 topPos = (m_Height - m_output->GetHeight()) / 2; in RenderDeviceResult()
40 if (m_Width < m_output->GetWidth() && m_Height < m_output->GetHeight()) { in RenderDeviceResult()
42 (FX_FLOAT)m_Width / (FX_FLOAT)m_output->GetWidth(), 0.0, 0.0, in RenderDeviceResult()
43 (FX_FLOAT)m_Height / (FX_FLOAT)m_output->GetHeight(), 0.0, 0.0); in RenderDeviceResult()
47 for (int32_t x = 0; x < m_output->GetWidth(); x++) { in RenderDeviceResult()
48 for (int32_t y = 0; y < m_output->GetHeight(); y++) { in RenderDeviceResult()
53 if (m_output->Get(x, y)) { in RenderDeviceResult()
65 pOutBitmap = CreateDIBitmap(m_output->GetWidth(), m_output->GetHeight()); in RenderBitmapResult()
75 leftPos = (m_Width - m_output->GetWidth()) / 2; in RenderBitmapResult()
76 topPos = (m_Height - m_output->GetHeight()) / 2; in RenderBitmapResult()
78 for (int32_t x = 0; x < m_output->GetWidth(); x++) { in RenderBitmapResult()
79 for (int32_t y = 0; y < m_output->GetHeight(); y++) { in RenderBitmapResult()
80 if (m_output->Get(x, y)) { in RenderBitmapResult()
138 m_output = new CBC_CommonBitMatrix; in RenderResult()
139 m_output->Init(outputWidth, outputHeight); in RenderResult()
147 m_output->SetRegion(outputX, outputY, multiX, multiY, e); in RenderResult()