• Home
  • Raw
  • Download

Lines Matching refs:BlendEq

95 typedef deUint32 BlendEq;  typedef
97 bool isAdvancedBlendEq (BlendEq eq) in isAdvancedBlendEq()
123 SeparateBlendEq (BlendEq rgb_, BlendEq alpha_) in SeparateBlendEq()
129 BlendEq rgb;
130 BlendEq alpha;
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()
213 if (blendEq.is<BlendEq>()) in setCommonBlendState()
214 gl.blendEquation(blendEq.get<BlendEq>()); in setCommonBlendState()
255 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in setIndexedBlendState()
257 if (blendEq.is<BlendEq>()) in setIndexedBlendState()
258 gl.blendEquationi(index, blendEq.get<BlendEq>()); in setIndexedBlendState()
594 if (state.blendEq->is<BlendEq>()) in setBlendState()
596 if (isAdvancedBlendEq(state.blendEq->get<BlendEq>())) in setBlendState()
598 …nst rr::BlendEquationAdvanced equation = mapGLBlendEquationAdvanced(state.blendEq->get<BlendEq>()); in setBlendState()
605 const rr::BlendEquation equation = mapGLBlendEquation(state.blendEq->get<BlendEq>()); in setBlendState()
851 if (pre.blendEq && pre.blendEq->is<BlendEq>()) in requiresAdvancedBlendEq()
852 requiresAdvancedBlendEq |= isAdvancedBlendEq(pre.blendEq->get<BlendEq>()); in requiresAdvancedBlendEq()
854 if (post.blendEq && post.blendEq->is<BlendEq>()) in requiresAdvancedBlendEq()
855 requiresAdvancedBlendEq |= isAdvancedBlendEq(post.blendEq->get<BlendEq>()); in requiresAdvancedBlendEq()
861 if (drawBufferBlendState.blendEq && drawBufferBlendState.blendEq->is<BlendEq>()) in requiresAdvancedBlendEq()
862 requiresAdvancedBlendEq |= isAdvancedBlendEq(drawBufferBlendState.blendEq->get<BlendEq>()); in requiresAdvancedBlendEq()
1080 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in logBlendState()
1082 if (blendEq.is<BlendEq>()) in logBlendState()
1083 …essage << "Set blend equation: " << glu::getBlendEquationStr(blendEq.get<BlendEq>()) << "." << Tes… in logBlendState()
1228 BlendEq getRandomBlendEq (de::Random& rng) in getRandomBlendEq()
1230 const BlendEq eqs[] = in getRandomBlendEq()
1280 const BlendEq rgb = getRandomBlendEq(rng); in genRandomBlendState()
1281 const BlendEq alpha = getRandomBlendEq(rng); in genRandomBlendState()
1506 …const BlendState emptyState = BlendState(tcu::nothing<bool>(), tcu::nothing<Either<BlendEq, Separa… in createDiffTest()
1524 tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), in createDiffTest()
1543 …const BlendState emptyState = BlendState(tcu::nothing<bool>(), tcu::nothing<Either<BlendEq, Separa… 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 …const BlendState eqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlend… in addDrawBufferCommonTests()
1592 …const BlendState eqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlend… in addDrawBufferCommonTests()
1594 …const BlendState separateEqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separat… in addDrawBufferCommonTests()
1595 …const BlendState separateEqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separat… in addDrawBufferCommonTests()
1597 …const BlendState advancedEqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separat… in addDrawBufferCommonTests()
1598 …const BlendState advancedEqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separat… in addDrawBufferCommonTests()
1614 …const BlendState funcStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBle… in addDrawBufferCommonTests()
1615 …const BlendState funcStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBle… in addDrawBufferCommonTests()
1616 …const BlendState separateFuncStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separ… in addDrawBufferCommonTests()
1617 …const BlendState separateFuncStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separ… in addDrawBufferCommonTests()
1626 …const BlendState commonColorMaskState = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Sep… in addDrawBufferCommonTests()
1627 …const BlendState bufferColorMaskState = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Sep… in addDrawBufferCommonTests()
1649 …const BlendState emptyState = BlendState(Maybe<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >… in createDrawBuffersIndexedTests()