Searched defs:fillShader (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/context/
H A DPlatformGraphicsContext.h67 virtual bool setFillShader(SkShader* fillShader);
180 SkShader* fillShader; member in class:WebCore::PlatformGraphicsContext::State
H A DPlatformGraphicsContext.cpp104 , fillShader(0)
123 , fillShader(other.fillShader)
130 SkSafeRef(fillShader);
137 SkSafeUnref(fillShader);
259 bool PlatformGraphicsContext::setFillShader(SkShader* fillShader) argument
262 if (fillShader && m_state->fillColor != Color::black) {
267 if (fillShader != m_state->fillShader) {
268 SkSafeUnref(m_state->fillShader);
[all...]
H A DPlatformGraphicsContextRecording.cpp587 bool PlatformGraphicsContextRecording::setFillShader(SkShader* fillShader) argument
589 if (PlatformGraphicsContext::setFillShader(fillShader)) {
1027 || (m_state->fillShader != 0 && !m_state->fillShader->isOpaque())
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPlatformContextSkia.cpp575 void PlatformContextSkia::setFillShader(SkShader* fillShader) argument
577 if (fillShader)
580 if (fillShader != m_state->m_fillShader) {
582 m_state->m_fillShader = fillShader;

Completed in 205 milliseconds