Home
last modified time | relevance | path

Searched refs:blendRGBState (Results 1 - 15 of 15) sorted by relevance

/third_party/vk-gl-cts/modules/glshared/
H A DglsInteractionTestUtil.cpp194 state.blendRGBState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquationsES2), DE_ARRAY_END(blendEquationsES2)); in computeRandomRenderState()
195 state.blendRGBState.srcFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendFuncs), DE_ARRAY_END(blendFuncs)); in computeRandomRenderState()
196 state.blendRGBState.dstFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendFuncsDstES2), DE_ARRAY_END(blendFuncsDstES2)); in computeRandomRenderState()
204 state.blendRGBState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquations), DE_ARRAY_END(blendEquations)); in computeRandomRenderState()
205 state.blendRGBState.srcFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendFuncs), DE_ARRAY_END(blendFuncs)); in computeRandomRenderState()
206 state.blendRGBState.dstFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendFuncs), DE_ARRAY_END(blendFuncs)); in computeRandomRenderState()
H A DglsInteractionTestUtil.hpp94 BlendState blendRGBState; member
H A DglsFragOpInteractionCase.cpp264 ctx.blendEquationSeparate(state.blendRGBState.equation, state.blendAState.equation); in setRenderState()
265 ctx.blendFuncSeparate(state.blendRGBState.srcFunc, state.blendRGBState.dstFunc, state.blendAState.srcFunc, state.blendAState.dstFunc); in setRenderState()
/third_party/vk-gl-cts/framework/referencerenderer/
H A DrrFragmentOperations.hpp141 void executeBlendFactorComputeRGB (const tcu::Vec4& blendColor, const BlendState& blendRGBState);
143 void executeBlend (const BlendState& blendRGBState, const BlendState& blendAState);
H A DrrRenderState.hpp258 BlendState blendRGBState; member
294 , blendRGBState () in FragmentOperationState()
H A DrrFragmentOperations.cpp359 void FragmentProcessor::executeBlendFactorComputeRGB (const Vec4& blendColor, const BlendState& blendRGBState) in executeBlendFactorComputeRGB() argument
378 switch (blendRGBState.FUNC_NAME) \ in executeBlendFactorComputeRGB()
461 void FragmentProcessor::executeBlend (const BlendState& blendRGBState, const BlendState& blendAState) in executeBlend() argument
476 switch (blendRGBState.equation) in executeBlend()
950 executeBlendFactorComputeRGB(state.blendColor, state.blendRGBState); in render()
954 executeBlend(state.blendRGBState, state.blendAState); in render()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fRandomFragmentOpTests.cpp123 translateBlendState(src.blendRGBState, dst.blendRGBState); in translateState()
193 wrapper.glBlendEquationSeparate(state.blendRGBState.equation, state.blendAState.equation);
194 wrapper.glBlendFuncSeparate(state.blendRGBState.srcFunc, state.blendRGBState.dstFunc, state.blendAState.srcFunc, state.blendAState.dstFunc);
H A Des3fBlendTests.cpp285 referenceState.blendRGBState.equation = sglr::rr_util::mapGLBlendEquation(paramSet.equationRGB); in iterate()
286 referenceState.blendRGBState.srcFunc = sglr::rr_util::mapGLBlendFunc(paramSet.srcFuncRGB); in iterate()
287 referenceState.blendRGBState.dstFunc = sglr::rr_util::mapGLBlendFunc(paramSet.dstFuncRGB); in iterate()
H A Des3fDrawBuffersIndexedTests.cpp620 fragOps.blendRGBState.equation = equation; in setBlendState()
629 fragOps.blendRGBState.equation = mapGLBlendEquation(state.blendEq->get<SeparateBlendEq>().rgb); in setBlendState()
641 fragOps.blendRGBState.srcFunc = srcFunction; in setBlendState()
642 fragOps.blendRGBState.dstFunc = dstFunction; in setBlendState()
651 fragOps.blendRGBState.srcFunc = mapGLBlendFunc(state.blendFunc->get<SeparateBlendFunc>().rgb.src); in setBlendState()
652 fragOps.blendRGBState.dstFunc = mapGLBlendFunc(state.blendFunc->get<SeparateBlendFunc>().rgb.dst); in setBlendState()
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fRandomFragmentOpTests.cpp123 translateBlendState(src.blendRGBState, dst.blendRGBState); in translateState()
193 wrapper.glBlendEquationSeparate(state.blendRGBState.equation, state.blendAState.equation);
194 wrapper.glBlendFuncSeparate(state.blendRGBState.srcFunc, state.blendRGBState.dstFunc, state.blendAState.srcFunc, state.blendAState.dstFunc);
H A Des2fBlendTests.cpp237 referenceState.blendRGBState.equation = sglr::rr_util::mapGLBlendEquation(paramSet.equationRGB); in iterate()
238 referenceState.blendRGBState.srcFunc = sglr::rr_util::mapGLBlendFunc(paramSet.srcFuncRGB); in iterate()
239 referenceState.blendRGBState.dstFunc = sglr::rr_util::mapGLBlendFunc(paramSet.dstFuncRGB); in iterate()
/third_party/vk-gl-cts/modules/egl/
H A DteglRenderTests.cpp298 state.fragOps.blendRGBState.srcFunc = rr::BLENDFUNC_ONE; in toReferenceRenderState()
299 state.fragOps.blendRGBState.dstFunc = rr::BLENDFUNC_ONE; in toReferenceRenderState()
300 state.fragOps.blendRGBState.equation = rr::BLENDEQUATION_ADD; in toReferenceRenderState()
301 state.fragOps.blendAState = state.fragOps.blendRGBState; in toReferenceRenderState()
305 state.fragOps.blendRGBState.srcFunc = rr::BLENDFUNC_SRC_ALPHA; in toReferenceRenderState()
306 state.fragOps.blendRGBState.dstFunc = rr::BLENDFUNC_ONE_MINUS_SRC_ALPHA; in toReferenceRenderState()
307 state.fragOps.blendRGBState.equation = rr::BLENDEQUATION_ADD; in toReferenceRenderState()
308 state.fragOps.blendAState = state.fragOps.blendRGBState; in toReferenceRenderState()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineBlendTests.cpp1102 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor); in verifyImage()
1103 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor); in verifyImage()
1104 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp); in verifyImage()
1517 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor); in verifyImage()
1518 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor); in verifyImage()
1519 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp); in verifyImage()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineBlendTests.cpp1104 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor); in verifyImage()
1105 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor); in verifyImage()
1106 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp); in verifyImage()
1519 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor); in verifyImage()
1520 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor); in verifyImage()
1521 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp); in verifyImage()
/third_party/vk-gl-cts/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp4366 state.fragOps.blendRGBState.equation = sglr::rr_util::mapGLBlendEquation(m_blendModeRGB);
4367 state.fragOps.blendRGBState.srcFunc = sglr::rr_util::mapGLBlendFunc(m_blendFactorSrcRGB);
4368 state.fragOps.blendRGBState.dstFunc = sglr::rr_util::mapGLBlendFunc(m_blendFactorDstRGB);

Completed in 24 milliseconds