Home | History | Annotate | Download | only in cg

Lines Matching refs:m_gradient

39     CGShadingRelease(m_gradient);
41 CGGradientRelease(m_gradient);
43 m_gradient = 0;
59 if (m_gradient)
60 return m_gradient;
70 m_gradient = CGShadingCreateRadial(colorSpace, m_p0, m_r0, m_p1, m_r1, colorFunction.get(), true, true);
72 m_gradient = CGShadingCreateAxial(colorSpace, m_p0, m_p1, colorFunction.get(), true, true);
74 return m_gradient;
79 if (m_gradient)
80 return m_gradient;
100 m_gradient = CGGradientCreateWithColorComponents(deviceRGBColorSpaceRef(), colorComponents.data(), locations.data(), m_stops.size());
102 return m_gradient;