Lines Matching refs:fragOps
293 state.fragOps.blendMode = rr::BLENDMODE_STANDARD;
298 state.fragOps.blendRGBState.srcFunc = rr::BLENDFUNC_ONE;
299 state.fragOps.blendRGBState.dstFunc = rr::BLENDFUNC_ONE;
300 state.fragOps.blendRGBState.equation = rr::BLENDEQUATION_ADD;
301 state.fragOps.blendAState = state.fragOps.blendRGBState;
305 state.fragOps.blendRGBState.srcFunc = rr::BLENDFUNC_SRC_ALPHA;
306 state.fragOps.blendRGBState.dstFunc = rr::BLENDFUNC_ONE_MINUS_SRC_ALPHA;
307 state.fragOps.blendRGBState.equation = rr::BLENDEQUATION_ADD;
308 state.fragOps.blendAState = state.fragOps.blendRGBState;
318 state.fragOps.depthTestEnabled = true;
321 state.fragOps.depthFunc = rr::TESTFUNC_LESS;
326 state.fragOps.stencilTestEnabled = true;
329 state.fragOps.stencilStates[0].func = rr::TESTFUNC_LEQUAL;
330 state.fragOps.stencilStates[0].sFail = rr::STENCILOP_KEEP;
331 state.fragOps.stencilStates[0].dpFail = rr::STENCILOP_INCR;
332 state.fragOps.stencilStates[0].dpPass = rr::STENCILOP_INCR;
333 state.fragOps.stencilStates[0].ref = drawOp.stencilRef;
334 state.fragOps.stencilStates[1] = state.fragOps.stencilStates[0];