Home | History | Annotate | Download | only in egl

Lines Matching refs:fragOps

287 		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.blendAState = state.fragOps.blendRGBState;
312 state.fragOps.depthTestEnabled = true;
315 state.fragOps.depthFunc = rr::TESTFUNC_LESS;
320 state.fragOps.stencilTestEnabled = true;
323 state.fragOps.stencilStates[0].func = rr::TESTFUNC_LEQUAL;
324 state.fragOps.stencilStates[0].sFail = rr::STENCILOP_KEEP;
325 state.fragOps.stencilStates[0].dpFail = rr::STENCILOP_INCR;
326 state.fragOps.stencilStates[0].dpPass = rr::STENCILOP_INCR;
327 state.fragOps.stencilStates[0].ref = drawOp.stencilRef;
328 state.fragOps.stencilStates[1] = state.fragOps.stencilStates[0];