Searched refs:blendColor (Results 1 - 25 of 57) sorted by relevance

123

/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...]
H A Des2fRandomFragmentOpTests.cpp125 dst.blendColor = tcu::clamp(src.blendColor, Vec4(0.0f), Vec4(1.0f));
195 wrapper.glBlendColor(state.blendColor.x(), state.blendColor.y(), state.blendColor.z(), state.blendColor.w());
/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...]
H A Des3fRandomFragmentOpTests.cpp125 dst.blendColor = tcu::clamp(src.blendColor, Vec4(0.0f), Vec4(1.0f));
195 wrapper.glBlendColor(state.blendColor.x(), state.blendColor.y(), state.blendColor.z(), state.blendColor.w());
/external/deqp/modules/glshared/
H A DglsInteractionTestUtil.hpp96 tcu::Vec4 blendColor; member in struct:deqp::gls::InteractionTestUtil::RenderState
H A DglsFragOpInteractionCase.cpp266 ctx.blendColor(state.blendColor.x(), state.blendColor.y(), state.blendColor.z(), state.blendColor.w());
H A DglsInteractionTestUtil.cpp213 state.blendColor = getRandomColor(rnd);
/external/chromium_org/third_party/skia/gm/
H A Dpathopsinverse.cpp25 SkColor blendColor = blend(oneColor, twoColor); variable
29 makePaint(&fOpPaint[kIntersect_PathOp], blendColor);
H A Dimagefiltersgraph.cpp171 SkAutoTUnref<SkImageFilter> blendColor(SkXfermodeImageFilter::Create(mode, colorMorph));
174 paint.setImageFilter(blendColor);
/external/deqp/framework/referencerenderer/
H A DrrFragmentOperations.hpp140 void executeBlendFactorComputeRGB (const tcu::Vec4& blendColor, const BlendState& blendRGBState);
141 void executeBlendFactorComputeA (const tcu::Vec4& blendColor, const BlendState& blendAState);
H A DrrRenderState.hpp245 tcu::Vec4 blendColor; //!< Components should be in range [0, 1]. member in struct:rr::FragmentOperationState
277 , blendColor (0.0f)
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...]
/external/skia/gm/
H A Dpathopsinverse.cpp25 SkColor blendColor = blend(oneColor, twoColor); variable
29 makePaint(&fOpPaint[kIntersect_PathOp], blendColor);
H A Dimagefiltersgraph.cpp149 SkAutoTUnref<SkImageFilter> blendColor(SkXfermodeImageFilter::Create(mode, colorMorph));
152 paint.setImageFilter(blendColor);
/external/deqp/framework/opengl/wrapper/
H A DglwInitES20Direct.inl11 gl->blendColor = &glBlendColor;
H A DglwInitES20.inl11 gl->blendColor = (glBlendColorFunc) loader->get("glBlendColor");
/external/deqp/framework/opengl/
H A DgluES3PlusWrapperFuncs.inl11 dst->blendColor = src.blendColor;
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DRenderer11.cpp603 void Renderer11::setBlendState(gl::Framebuffer *framebuffer, const gl::BlendState &blendState, const gl::ColorF &blendColor, argument
608 memcmp(&blendColor, &mCurBlendColor, sizeof(gl::ColorF)) != 0 ||
624 blendColors[0] = blendColor.red;
625 blendColors[1] = blendColor.green;
626 blendColors[2] = blendColor.blue;
627 blendColors[3] = blendColor.alpha;
631 blendColors[0] = blendColor.alpha;
632 blendColors[1] = blendColor.alpha;
633 blendColors[2] = blendColor.alpha;
634 blendColors[3] = blendColor
[all...]
H A DRenderer11.h69 virtual void setBlendState(gl::Framebuffer *framebuffer, const gl::BlendState &blendState, const gl::ColorF &blendColor,
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DRenderer.h119 virtual void setBlendState(gl::Framebuffer *framebuffer, const gl::BlendState &blendState, const gl::ColorF &blendColor,
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DRenderer9.h70 virtual void setBlendState(gl::Framebuffer *framebuffer, const gl::BlendState &blendState, const gl::ColorF &blendColor,
H A DRenderer9.cpp755 void Renderer9::setBlendState(gl::Framebuffer *framebuffer, const gl::BlendState &blendState, const gl::ColorF &blendColor, argument
759 bool blendColorChanged = mForceSetBlendState || memcmp(&blendColor, &mCurBlendColor, sizeof(gl::ColorF)) != 0;
771 mDevice->SetRenderState(D3DRS_BLENDFACTOR, gl_d3d9::ConvertColor(blendColor));
775 mDevice->SetRenderState(D3DRS_BLENDFACTOR, D3DCOLOR_RGBA(gl::unorm<8>(blendColor.alpha),
776 gl::unorm<8>(blendColor.alpha),
777 gl::unorm<8>(blendColor.alpha),
778 gl::unorm<8>(blendColor.alpha)));
844 mCurBlendColor = blendColor;
/external/deqp/framework/opengl/simplereference/
H A DsglrContext.hpp130 virtual void blendColor (float red, float green, float blue, float alpha) = DE_NULL;
H A DsglrContextWrapper.cpp341 m_curCtx->blendColor(red, green, blue, alpha);
H A DsglrGLContext.hpp142 virtual void blendColor (float red, float green, float blue, float alpha);

Completed in 227 milliseconds

123