Searched defs:blendColor (Results 1 - 7 of 7) sorted by relevance

/external/skia/gm/
H A Dpathopsinverse.cpp25 SkColor blendColor = blend(oneColor, twoColor); variable
29 makePaint(&fOpPaint[kIntersect_PathOp], blendColor);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DContext.h134 Color blendColor; member in struct:gl::State
/external/chromium_org/cc/test/
H A Dfake_web_graphics_context_3d.h96 virtual void blendColor( function in class:cc::FakeWebGraphicsContext3D
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DMockWebGraphicsContext3D.h77 virtual void blendColor(WGC3Dclampf red, WGC3Dclampf green, WGC3Dclampf blue, WGC3Dclampf alpha) { } function in class:blink::MockWebGraphicsContext3D
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DRenderer11.cpp661 void Renderer11::setBlendState(const gl::BlendState &blendState, const gl::Color &blendColor, argument
666 memcmp(&blendColor, &mCurBlendColor, sizeof(gl::Color)) != 0 ||
680 blendColors[0] = blendColor.red;
681 blendColors[1] = blendColor.green;
682 blendColors[2] = blendColor.blue;
683 blendColors[3] = blendColor.alpha;
687 blendColors[0] = blendColor.alpha;
688 blendColors[1] = blendColor.alpha;
689 blendColors[2] = blendColor.alpha;
690 blendColors[3] = blendColor
[all...]
H A DRenderer9.cpp855 void Renderer9::setBlendState(const gl::BlendState &blendState, const gl::Color &blendColor, unsigned int sampleMask) argument
858 bool blendColorChanged = mForceSetBlendState || memcmp(&blendColor, &mCurBlendColor, sizeof(gl::Color)) != 0;
870 mDevice->SetRenderState(D3DRS_BLENDFACTOR, gl_d3d9::ConvertColor(blendColor));
874 mDevice->SetRenderState(D3DRS_BLENDFACTOR, D3DCOLOR_RGBA(gl::unorm<8>(blendColor.alpha),
875 gl::unorm<8>(blendColor.alpha),
876 gl::unorm<8>(blendColor.alpha),
877 gl::unorm<8>(blendColor.alpha)));
937 mCurBlendColor = blendColor;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContext.cpp1178 void WebGLRenderingContext::blendColor(GC3Dfloat red, GC3Dfloat green, GC3Dfloat blue, GC3Dfloat alpha) function in class:WebCore::WebGLRenderingContext
1182 m_context->blendColor(red, green, blue, alpha);

Completed in 159 milliseconds