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

/external/chromium_org/third_party/skia/gm/
H A Dpathopsinverse.cpp25 SkColor blendColor = blend(oneColor, twoColor); variable
29 makePaint(&fOpPaint[kIntersect_PathOp], blendColor);
/external/skia/gm/
H A Dpathopsinverse.cpp25 SkColor blendColor = blend(oneColor, twoColor); variable
29 makePaint(&fOpPaint[kIntersect_PathOp], blendColor);
/external/deqp/modules/glshared/
H A DglsInteractionTestUtil.hpp96 tcu::Vec4 blendColor; member in struct:deqp::gls::InteractionTestUtil::RenderState
/external/deqp/modules/gles2/functional/
H A Des2fBlendTests.cpp75 Vec4 blendColor; member in struct:deqp::gles2::Functional::BlendParams
90 , blendColor (blendColor_)
225 log << TestLog::Message << "Blend color = (" << paramSet.blendColor.x() << ", " << paramSet.blendColor.y() << ", " << paramSet.blendColor.z() << ", " << paramSet.blendColor.w() << ")" << TestLog::EndMessage;
231 GLU_CHECK_CALL(glBlendColor(paramSet.blendColor.x(), paramSet.blendColor.y(), paramSet.blendColor.z(), paramSet.blendColor
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fBlendTests.cpp92 Vec4 blendColor; member in struct:deqp::gles3::Functional::BlendParams
107 , blendColor (blendColor_)
278 log << TestLog::Message << "Blend color = (" << paramSet.blendColor.x() << ", " << paramSet.blendColor.y() << ", " << paramSet.blendColor.z() << ", " << paramSet.blendColor.w() << ")" << TestLog::EndMessage;
284 GLU_CHECK_CALL(glBlendColor(paramSet.blendColor.x(), paramSet.blendColor.y(), paramSet.blendColor.z(), paramSet.blendColor
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DContext.h81 ColorF blendColor; member in struct:gl::State
/external/deqp/framework/referencerenderer/
H A DrrFragmentOperations.cpp304 void FragmentProcessor::executeBlendFactorComputeRGB (const Vec4& blendColor, const BlendState& blendRGBState) argument
335 case BLENDFUNC_CONSTANT_COLOR: SAMPLE_REGISTER_BLEND_FACTOR(FACTOR_NAME, blendColor.swizzle(0,1,2)) break; \
336 case BLENDFUNC_ONE_MINUS_CONSTANT_COLOR: SAMPLE_REGISTER_BLEND_FACTOR(FACTOR_NAME, Vec3(1.0f) - blendColor.swizzle(0,1,2)) break; \
337 case BLENDFUNC_CONSTANT_ALPHA: SAMPLE_REGISTER_BLEND_FACTOR(FACTOR_NAME, Vec3(blendColor.w())) break; \
338 case BLENDFUNC_ONE_MINUS_CONSTANT_ALPHA: SAMPLE_REGISTER_BLEND_FACTOR(FACTOR_NAME, Vec3(1.0f - blendColor.w())) break; \
355 void FragmentProcessor::executeBlendFactorComputeA (const Vec4& blendColor, const BlendState& blendAState) argument
386 case BLENDFUNC_CONSTANT_COLOR: SAMPLE_REGISTER_BLEND_FACTOR(FACTOR_NAME, blendColor.w()) break; \
387 case BLENDFUNC_ONE_MINUS_CONSTANT_COLOR: SAMPLE_REGISTER_BLEND_FACTOR(FACTOR_NAME, 1.0f - blendColor.w()) break; \
388 case BLENDFUNC_CONSTANT_ALPHA: SAMPLE_REGISTER_BLEND_FACTOR(FACTOR_NAME, blendColor.w()) break; \
389 case BLENDFUNC_ONE_MINUS_CONSTANT_ALPHA: SAMPLE_REGISTER_BLEND_FACTOR(FACTOR_NAME, 1.0f - blendColor
[all...]
H A DrrRenderState.hpp245 tcu::Vec4 blendColor; //!< Components should be in range [0, 1]. member in struct:rr::FragmentOperationState
277 , blendColor (0.0f)
/external/deqp/framework/opengl/simplereference/
H A DsglrGLContext.cpp575 void GLContext::blendColor (float red, float green, float blue, float alpha) function in class:sglr::GLContext
/external/chromium_org/third_party/WebKit/Source/platform/graphics/test/
H A DMockWebGraphicsContext3D.h76 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/d3d11/
H A DRenderer11.cpp757 void Renderer11::setBlendState(gl::Framebuffer *framebuffer, const gl::BlendState &blendState, const gl::ColorF &blendColor, argument
762 memcmp(&blendColor, &mCurBlendColor, sizeof(gl::ColorF)) != 0 ||
776 blendColors[0] = blendColor.red;
777 blendColors[1] = blendColor.green;
778 blendColors[2] = blendColor.blue;
779 blendColors[3] = blendColor.alpha;
783 blendColors[0] = blendColor.alpha;
784 blendColors[1] = blendColor.alpha;
785 blendColors[2] = blendColor.alpha;
786 blendColors[3] = blendColor
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
H A DRenderer9.cpp878 void Renderer9::setBlendState(gl::Framebuffer *framebuffer, const gl::BlendState &blendState, const gl::ColorF &blendColor, argument
882 bool blendColorChanged = mForceSetBlendState || memcmp(&blendColor, &mCurBlendColor, sizeof(gl::ColorF)) != 0;
894 mDevice->SetRenderState(D3DRS_BLENDFACTOR, gl_d3d9::ConvertColor(blendColor));
898 mDevice->SetRenderState(D3DRS_BLENDFACTOR, D3DCOLOR_RGBA(gl::unorm<8>(blendColor.alpha),
899 gl::unorm<8>(blendColor.alpha),
900 gl::unorm<8>(blendColor.alpha),
901 gl::unorm<8>(blendColor.alpha)));
967 mCurBlendColor = blendColor;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp1132 void WebGLRenderingContextBase::blendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) function in class:WebCore::__anon10393::WebGLRenderingContextBase
1136 webContext()->blendColor(red, green, blue, alpha);

Completed in 427 milliseconds