Home
last modified time | relevance | path

Searched refs:blendColors (Results 1 – 1 of 1) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d11/
DStateManager11.cpp1269 float blendColors[4] = {0.0f}; in syncBlendState() local
1270 blendColors[0] = emulateConstantAlpha ? blendColor.alpha : blendColor.red; in syncBlendState()
1271 blendColors[1] = emulateConstantAlpha ? blendColor.alpha : blendColor.green; in syncBlendState()
1272 blendColors[2] = emulateConstantAlpha ? blendColor.alpha : blendColor.blue; in syncBlendState()
1273 blendColors[3] = blendColor.alpha; in syncBlendState()
1275 mRenderer->getDeviceContext()->OMSetBlendState(dxBlendState->get(), blendColors, sampleMask); in syncBlendState()