• 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;
204 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in setCommonBlendState()
206 if (blendEq.is<BlendEq>()) in setCommonBlendState()
207 gl.blendEquation(blendEq.get<BlendEq>()); in setCommonBlendState()
248 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in setIndexedBlendState()
250 if (blendEq.is<BlendEq>()) in setIndexedBlendState()
251 gl.blendEquationi(index, blendEq.get<BlendEq>()); in setIndexedBlendState()
587 if (state.blendEq->is<BlendEq>()) in setBlendState()
589 if (isAdvancedBlendEq(state.blendEq->get<BlendEq>())) in setBlendState()
591 …nst rr::BlendEquationAdvanced equation = mapGLBlendEquationAdvanced(state.blendEq->get<BlendEq>()); in setBlendState()
598 const rr::BlendEquation equation = mapGLBlendEquation(state.blendEq->get<BlendEq>()); in setBlendState()
843 if (pre.blendEq && pre.blendEq->is<BlendEq>()) in requiresAdvancedBlendEq()
844 requiresAdvancedBlendEq |= isAdvancedBlendEq(pre.blendEq->get<BlendEq>()); in requiresAdvancedBlendEq()
846 if (post.blendEq && post.blendEq->is<BlendEq>()) in requiresAdvancedBlendEq()
847 requiresAdvancedBlendEq |= isAdvancedBlendEq(post.blendEq->get<BlendEq>()); in requiresAdvancedBlendEq()
853 if (drawBufferBlendState.blendEq && drawBufferBlendState.blendEq->is<BlendEq>()) in requiresAdvancedBlendEq()
854 requiresAdvancedBlendEq |= isAdvancedBlendEq(drawBufferBlendState.blendEq->get<BlendEq>()); in requiresAdvancedBlendEq()
1069 const Either<BlendEq, SeparateBlendEq>& blendEq = *blend.blendEq; in logBlendState()
1071 if (blendEq.is<BlendEq>()) in logBlendState()
1072 …essage << "Set blend equation: " << glu::getBlendEquationStr(blendEq.get<BlendEq>()) << "." << Tes… in logBlendState()
1217 BlendEq getRandomBlendEq (de::Random& rng) in getRandomBlendEq()
1219 const BlendEq eqs[] = in getRandomBlendEq()
1269 const BlendEq rgb = getRandomBlendEq(rng); in genRandomBlendState()
1270 const BlendEq alpha = getRandomBlendEq(rng); in genRandomBlendState()
1495 …const BlendState emptyState = BlendState(tcu::nothing<bool>(), tcu::nothing<Either<BlendEq, Separa… in createDiffTest()
1513 tcu::nothing<Either<BlendEq, SeparateBlendEq> >(), in createDiffTest()
1532 …const BlendState emptyState = BlendState(tcu::nothing<bool>(), tcu::nothing<Either<BlendEq, Separa… 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 …const BlendState eqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlend… in addDrawBufferCommonTests()
1581 …const BlendState eqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBlend… in addDrawBufferCommonTests()
1583 …const BlendState separateEqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separat… in addDrawBufferCommonTests()
1584 …const BlendState separateEqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separat… in addDrawBufferCommonTests()
1586 …const BlendState advancedEqStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separat… in addDrawBufferCommonTests()
1587 …const BlendState advancedEqStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separat… in addDrawBufferCommonTests()
1603 …const BlendState funcStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBle… in addDrawBufferCommonTests()
1604 …const BlendState funcStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, SeparateBle… in addDrawBufferCommonTests()
1605 …const BlendState separateFuncStateA = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separ… in addDrawBufferCommonTests()
1606 …const BlendState separateFuncStateB = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Separ… in addDrawBufferCommonTests()
1615 …const BlendState commonColorMaskState = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Sep… in addDrawBufferCommonTests()
1616 …const BlendState bufferColorMaskState = BlendState(tcu::nothing<bool>(), Maybe<Either<BlendEq, Sep… in addDrawBufferCommonTests()
1638 …const BlendState emptyState = BlendState(Maybe<bool>(), Maybe<Either<BlendEq, SeparateBlendEq> >… in createDrawBuffersIndexedTests()