Lines Matching refs:m_info

115   m_infoStack.push_back(pdfium::MakeUnique<TInfo>(m_info));
126 m_info = *m_infoStack.back();
133 m_info.graphState.m_LineCap = lineCap;
146 if (m_info.isActOnDash) {
147 scale = m_info.graphState.m_LineWidth;
149 m_info.graphState.m_DashPhase = dashPhase;
150 m_info.graphState.SetDashCount(dashCount);
152 m_info.graphState.m_DashArray[i] = dashArray[i] * scale;
164 m_info.graphState.m_LineWidth = lineWidth;
165 m_info.isActOnDash = isActOnDash;
173 m_info.strokeColor = color;
181 m_info.fillColor = color;
214 m_info.CTM.Concat(*matrix);
220 return &m_info.CTM;
247 m_info.graphState.SetDashCount(0);
276 if (!m_info.strokeColor)
278 CFX_Matrix m(m_info.CTM.a, m_info.CTM.b, m_info.CTM.c, m_info.CTM.d,
279 m_info.CTM.e, m_info.CTM.f);
283 switch (m_info.strokeColor->m_type) {
285 m_renderDevice->DrawPath(path->GetPathData(), &m, &m_info.graphState, 0x0,
286 m_info.strokeColor->m_info.argb, 0);
297 if (!m_info.fillColor)
299 CFX_Matrix m(m_info.CTM.a, m_info.CTM.b, m_info.CTM.c, m_info.CTM.d,
300 m_info.CTM.e, m_info.CTM.f);
304 switch (m_info.fillColor->m_type) {
306 m_renderDevice->DrawPath(path->GetPathData(), &m, &m_info.graphState,
307 m_info.fillColor->m_info.argb, 0x0, fillMode);
324 CFX_Matrix m1(m_info.CTM.a, m_info.CTM.b, m_info.CTM.c, m_info.CTM.d,
325 m_info.CTM.e, m_info.CTM.f);
349 CFX_Pattern* pattern = m_info.fillColor->m_info.pattern;
357 FX_HatchStyle hatchStyle = m_info.fillColor->m_info.pattern->m_hatchStyle;
371 device.FillRect(&rect, m_info.fillColor->m_info.pattern->m_backArgb);
375 m_info.fillColor->m_info.pattern->m_foreArgb);
391 FX_FLOAT start_x = m_info.fillColor->m_shading->m_beginPoint.x;
392 FX_FLOAT start_y = m_info.fillColor->m_shading->m_beginPoint.y;
393 FX_FLOAT end_x = m_info.fillColor->m_shading->m_endPoint.x;
394 FX_FLOAT end_y = m_info.fillColor->m_shading->m_endPoint.y;
400 switch (m_info.fillColor->m_shading->m_type) {
414 if (!m_info.fillColor->m_shading->m_isExtendedBegin) {
419 if (!m_info.fillColor->m_shading->m_isExtendedEnd) {
425 dib_buf[column] = m_info.fillColor->m_shading->m_argbArray[index];
432 FX_FLOAT start_r = m_info.fillColor->m_shading->m_beginRadius;
433 FX_FLOAT end_r = m_info.fillColor->m_shading->m_endRadius;
464 if (s2 <= 1.0f || m_info.fillColor->m_shading->m_isExtendedEnd) {
474 if (!m_info.fillColor->m_shading->m_isExtendedBegin) {
480 if (!m_info.fillColor->m_shading->m_isExtendedEnd) {
486 dib_buf[column] = m_info.fillColor->m_shading->m_argbArray[index];