Searched refs:fragOps (Results 1 - 9 of 9) sorted by relevance

/external/deqp/modules/egl/
H A DteglRenderTests.cpp287 state.fragOps.blendMode = rr::BLENDMODE_STANDARD;
292 state.fragOps.blendRGBState.srcFunc = rr::BLENDFUNC_ONE;
293 state.fragOps.blendRGBState.dstFunc = rr::BLENDFUNC_ONE;
294 state.fragOps.blendRGBState.equation = rr::BLENDEQUATION_ADD;
295 state.fragOps.blendAState = state.fragOps.blendRGBState;
299 state.fragOps.blendRGBState.srcFunc = rr::BLENDFUNC_SRC_ALPHA;
300 state.fragOps.blendRGBState.dstFunc = rr::BLENDFUNC_ONE_MINUS_SRC_ALPHA;
301 state.fragOps.blendRGBState.equation = rr::BLENDEQUATION_ADD;
302 state.fragOps
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fDrawBuffersIndexedTests.cpp583 void setBlendState (rr::FragmentOperationState& fragOps, const BlendState& state) argument
593 fragOps.blendMode = rr::BLENDMODE_ADVANCED;
594 fragOps.blendEquationAdvaced = equation;
600 fragOps.blendMode = rr::BLENDMODE_STANDARD;
601 fragOps.blendRGBState.equation = equation;
602 fragOps.blendAState.equation = equation;
609 fragOps.blendMode = rr::BLENDMODE_STANDARD;
610 fragOps.blendRGBState.equation = mapGLBlendEquation(state.blendEq->get<SeparateBlendEq>().rgb);
611 fragOps.blendAState.equation = mapGLBlendEquation(state.blendEq->get<SeparateBlendEq>().alpha);
622 fragOps
[all...]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineBlendTests.cpp927 renderState.fragOps.blendMode = rr::BLENDMODE_STANDARD;
928 renderState.fragOps.blendRGBState.srcFunc = mapVkBlendFactor(blendState.srcColorBlendFactor);
929 renderState.fragOps.blendRGBState.dstFunc = mapVkBlendFactor(blendState.dstColorBlendFactor);
930 renderState.fragOps.blendRGBState.equation = mapVkBlendOp(blendState.colorBlendOp);
931 renderState.fragOps.blendAState.srcFunc = mapVkBlendFactor(blendState.srcAlphaBlendFactor);
932 renderState.fragOps.blendAState.dstFunc = mapVkBlendFactor(blendState.dstAlphaBlendFactor);
933 renderState.fragOps.blendAState.equation = mapVkBlendOp(blendState.alphaBlendOp);
934 renderState.fragOps.blendColor = BlendTest::s_blendConst;
935 renderState.fragOps.colorMask = mapVkColorComponentFlags(BlendTest::s_colorWriteMasks[quadNdx]);
H A DvktPipelineStencilTests.cpp945 renderState.fragOps.depthTestEnabled = true;
946 renderState.fragOps.depthFunc = mapVkCompareOp(VK_COMPARE_OP_LESS);
947 renderState.fragOps.stencilTestEnabled = true;
949 rr::StencilState& refStencilFront = renderState.fragOps.stencilStates[rr::FACETYPE_FRONT];
950 rr::StencilState& refStencilBack = renderState.fragOps.stencilStates[rr::FACETYPE_BACK];
H A DvktPipelineDepthTests.cpp858 renderState.fragOps.depthTestEnabled = true;
859 renderState.fragOps.depthFunc = mapVkCompareOp(m_depthCompareOps[quadNdx]);
/external/deqp/modules/internal/
H A DditFrameworkTests.cpp773 state.fragOps.depthTestEnabled = true;
774 state.fragOps.depthFunc = rr::TESTFUNC_ALWAYS;
775 state.fragOps.stencilTestEnabled = true;
776 state.fragOps.stencilStates[rr::FACETYPE_BACK].func = rr::TESTFUNC_ALWAYS;
777 state.fragOps.stencilStates[rr::FACETYPE_BACK].dpPass = rr::STENCILOP_INCR;
778 state.fragOps.stencilStates[rr::FACETYPE_FRONT] = state.fragOps.stencilStates[rr::FACETYPE_BACK];
/external/deqp/framework/referencerenderer/
H A DrrRenderState.hpp361 FragmentOperationState fragOps; member in struct:rr::RenderState
H A DrrRenderer.cpp1065 rr::FragmentOperationState noStencilDepthWriteState(state.fragOps);
1075 const rr::FragmentOperationState& fragOpsState = (outputNdx == numOutputs-1) ? (state.fragOps) : (noStencilDepthWriteState);
1123 if (buffers.fragmentDepthBuffer && state.fragOps.polygonOffsetEnabled)
1128 depthOffset = maximumDepthSlope * state.fragOps.polygonOffsetFactor + minimumResolvableDifference * state.fragOps.polygonOffsetUnits;
1147 if (buffers.fragmentDepthBuffer && state.fragOps.polygonOffsetEnabled)
1156 if (buffers.fragmentDepthBuffer && state.fragOps.depthClampEnabled)
1209 if (buffers.fragmentDepthBuffer && state.fragOps.depthClampEnabled)
1274 if (buffers.fragmentDepthBuffer && state.fragOps.depthClampEnabled)
1331 const bool clipZ = !state.fragOps
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.cpp4305 state.fragOps.scissorTestEnabled = m_scissorEnabled;
4306 state.fragOps.scissorRectangle = rr::WindowRectangle(m_scissorBox.x(), m_scissorBox.y(), m_scissorBox.z(), m_scissorBox.w());
4308 state.fragOps.numStencilBits = stencilBits;
4309 state.fragOps.stencilTestEnabled = m_stencilTestEnabled;
4313 state.fragOps.stencilStates[faceType].compMask = m_stencil[faceType].opMask;
4314 state.fragOps.stencilStates[faceType].writeMask = m_stencil[faceType].writeMask;
4315 state.fragOps.stencilStates[faceType].ref = m_stencil[faceType].ref;
4316 state.fragOps.stencilStates[faceType].func = sglr::rr_util::mapGLTestFunc(m_stencil[faceType].func);
4317 state.fragOps.stencilStates[faceType].sFail = sglr::rr_util::mapGLStencilOp(m_stencil[faceType].opStencilFail);
4318 state.fragOps
[all...]

Completed in 3972 milliseconds