• Home
  • Raw
  • Download

Lines Matching refs:SeparateBlendEq

121 struct SeparateBlendEq  struct
123 SeparateBlendEq (BlendEq rgb_, BlendEq alpha_) in SeparateBlendEq() argument
164 const Maybe<Either<BlendEq, SeparateBlendEq> >& blendEq_, in BlendState()
180 Maybe<Either<BlendEq, SeparateBlendEq> > blendEq;
211 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in setCommonBlendState()
215 else if (blendEq.is<SeparateBlendEq>()) in setCommonBlendState()
216 …gl.blendEquationSeparate(blendEq.get<SeparateBlendEq>().rgb, blendEq.get<SeparateBlendEq>().alpha); in setCommonBlendState()
255 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in setIndexedBlendState()
259 else if (blendEq.is<SeparateBlendEq>()) in setIndexedBlendState()
260 …gl.blendEquationSeparatei(index, blendEq.get<SeparateBlendEq>().rgb, blendEq.get<SeparateBlendEq>(… in setIndexedBlendState()
614 DE_ASSERT(state.blendEq->is<SeparateBlendEq>()); in setBlendState()
617 fragOps.blendRGBState.equation = mapGLBlendEquation(state.blendEq->get<SeparateBlendEq>().rgb); in setBlendState()
618 fragOps.blendAState.equation = mapGLBlendEquation(state.blendEq->get<SeparateBlendEq>().alpha); in setBlendState()
1080 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in logBlendState()
1084 else if (blendEq.is<SeparateBlendEq>()) in logBlendState()
1085 …BlendEquationStr(blendEq.get<SeparateBlendEq>().rgb) << ", alpha: " << glu::getBlendEquationStr(bl… in logBlendState()
1283 blendState.blendEq = SeparateBlendEq(rgb, alpha); in genRandomBlendState()
1506 …tate = BlendState(tcu::nothing<bool>(), tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), tcu::no… in createDiffTest()
1524 tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), in createDiffTest()
1543 …tate = BlendState(tcu::nothing<bool>(), tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), tcu::no… in createAdvancedEqDiffTest()
1560 tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), in createAdvancedEqDiffTest()
1578 …const BlendState emptyState = BlendState(Maybe<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(… in addDrawBufferCommonTests()
1581 …const BlendState disableState = BlendState(just(false), Maybe<Either<BlendEq, SeparateBlendEq> >()… in addDrawBufferCommonTests()
1582 …const BlendState enableState = BlendState(just(true), Maybe<Either<BlendEq, SeparateBlendEq> >(),… in addDrawBufferCommonTests()
1591 … eqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(GL_FUNC_AD… in addDrawBufferCommonTests()
1592 … eqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(GL_FUNC_SU… in addDrawBufferCommonTests()
1594 …A = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(SeparateBlendEq(GL_F… in addDrawBufferCommonTests()
1595 …B = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(SeparateBlendEq(GL_F… in addDrawBufferCommonTests()
1597 …cedEqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(GL_DIFFERE… in addDrawBufferCommonTests()
1598 …cedEqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(GL_SCREEN)… in addDrawBufferCommonTests()
1614 …uncStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1615 …uncStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1616 …eFuncStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1617 …eFuncStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1626 …orMaskState = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1627 …orMaskState = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1649 …const BlendState emptyState = BlendState(Maybe<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >… in createDrawBuffersIndexedTests()