Searched defs:blendConstant (Results 1 - 1 of 1) sorted by relevance

/external/swiftshader/src/Renderer/
H A DPixelProcessor.cpp648 void PixelProcessor::setBlendConstant(const Color<float> &blendConstant) argument
651 short blendConstantR = iround(65535 * blendConstant.r);
652 short blendConstantG = iround(65535 * blendConstant.g);
653 short blendConstantB = iround(65535 * blendConstant.b);
654 short blendConstantA = iround(65535 * blendConstant.a);
677 short invBlendConstantR = iround(65535 * (1 - blendConstant.r));
678 short invBlendConstantG = iround(65535 * (1 - blendConstant.g));
679 short invBlendConstantB = iround(65535 * (1 - blendConstant.b));
680 short invBlendConstantA = iround(65535 * (1 - blendConstant.a));
702 factor.blendConstant4F[0][0] = blendConstant
[all...]

Completed in 110 milliseconds