• Home
  • Raw
  • Download

Lines Matching refs:SeparateBlendEq

121 struct SeparateBlendEq  struct
123 SeparateBlendEq (BlendEq rgb_, BlendEq alpha_) in SeparateBlendEq() function
164 const Maybe<Either<BlendEq, SeparateBlendEq> >& blendEq_, in BlendState()
180 Maybe<Either<BlendEq, SeparateBlendEq> > blendEq;
204 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in setCommonBlendState()
208 else if (blendEq.is<SeparateBlendEq>()) in setCommonBlendState()
209 …gl.blendEquationSeparate(blendEq.get<SeparateBlendEq>().rgb, blendEq.get<SeparateBlendEq>().alpha); in setCommonBlendState()
248 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in setIndexedBlendState()
252 else if (blendEq.is<SeparateBlendEq>()) in setIndexedBlendState()
253 …gl.blendEquationSeparatei(index, blendEq.get<SeparateBlendEq>().rgb, blendEq.get<SeparateBlendEq>(… in setIndexedBlendState()
607 DE_ASSERT(state.blendEq->is<SeparateBlendEq>()); in setBlendState()
610 fragOps.blendRGBState.equation = mapGLBlendEquation(state.blendEq->get<SeparateBlendEq>().rgb); in setBlendState()
611 fragOps.blendAState.equation = mapGLBlendEquation(state.blendEq->get<SeparateBlendEq>().alpha); in setBlendState()
1069 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in logBlendState()
1073 else if (blendEq.is<SeparateBlendEq>()) in logBlendState()
1074 …BlendEquationStr(blendEq.get<SeparateBlendEq>().rgb) << ", alpha: " << glu::getBlendEquationStr(bl… in logBlendState()
1272 blendState.blendEq = SeparateBlendEq(rgb, alpha); in genRandomBlendState()
1495 …tate = BlendState(tcu::nothing<bool>(), tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), tcu::no… in createDiffTest()
1513 tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), in createDiffTest()
1532 …tate = BlendState(tcu::nothing<bool>(), tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), tcu::no… in createAdvancedEqDiffTest()
1549 tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), in createAdvancedEqDiffTest()
1567 …const BlendState emptyState = BlendState(Maybe<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(… in addDrawBufferCommonTests()
1570 …const BlendState disableState = BlendState(just(false), Maybe<Either<BlendEq, SeparateBlendEq> >()… in addDrawBufferCommonTests()
1571 …const BlendState enableState = BlendState(just(true), Maybe<Either<BlendEq, SeparateBlendEq> >(),… in addDrawBufferCommonTests()
1580 … eqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(GL_FUNC_AD… in addDrawBufferCommonTests()
1581 … eqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(GL_FUNC_SU… in addDrawBufferCommonTests()
1583 …A = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(SeparateBlendEq(GL_F… in addDrawBufferCommonTests()
1584 …B = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(SeparateBlendEq(GL_F… in addDrawBufferCommonTests()
1586 …cedEqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(GL_DIFFERE… in addDrawBufferCommonTests()
1587 …cedEqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(GL_SCREEN)… in addDrawBufferCommonTests()
1603 …uncStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1604 …uncStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1605 …eFuncStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1606 …eFuncStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1615 …orMaskState = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1616 …orMaskState = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >(), Maybe<E… in addDrawBufferCommonTests()
1638 …const BlendState emptyState = BlendState(Maybe<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >… in createDrawBuffersIndexedTests()