Lines Matching refs:blendState
278 const BlendState& blendState,
293 DrawBufferInfo::DrawBufferInfo (bool render, const IVec2& size, const BlendState& blendState, const… in DrawBufferInfo() argument
297 , m_blendState (blendState) in DrawBufferInfo()
1258 void genRandomBlendState (de::Random& rng, BlendState& blendState) in genRandomBlendState() argument
1261 blendState.enableBlend = rng.getBool(); in genRandomBlendState()
1266 blendState.blendEq = getRandomBlendEq(rng); in genRandomBlendState()
1272 blendState.blendEq = SeparateBlendEq(rgb, alpha); in genRandomBlendState()
1279 blendState.blendFunc = getRandomBlendFunc(rng); in genRandomBlendState()
1285 blendState.blendFunc = SeparateBlendFunc(rgb, alpha); in genRandomBlendState()
1296 blendState.colorMask = BVec4(red, blue, green, alpha); in genRandomBlendState()
1359 BlendState blendState; in genRandomTest() local
1361 genRandomBlendState(rng, blendState); in genRandomTest()
1383 || blendState.enableBlend) in genRandomTest()
1384 blendState.enableBlend = tcu::just(false); in genRandomTest()
1388 drawBuffers.push_back(DrawBufferInfo(render, size, blendState, format)); in genRandomTest()