Lines Matching refs:mCurBlendState

22       mCurBlendState(),  in StateManager9()
128 if (state.getBlendState().blend != mCurBlendState.blend) in syncState()
145 if (blendState.sourceBlendRGB != mCurBlendState.sourceBlendRGB || in syncState()
146 blendState.destBlendRGB != mCurBlendState.destBlendRGB || in syncState()
147 blendState.sourceBlendAlpha != mCurBlendState.sourceBlendAlpha || in syncState()
148 blendState.destBlendAlpha != mCurBlendState.destBlendAlpha) in syncState()
165 if (blendState.blendEquationRGB != mCurBlendState.blendEquationRGB || in syncState()
166 blendState.blendEquationAlpha != mCurBlendState.blendEquationAlpha) in syncState()
180 mCurBlendState.sampleAlphaToCoverage) in syncState()
188 if (blendState.colorMaskRed != mCurBlendState.colorMaskRed || in syncState()
189 blendState.colorMaskGreen != mCurBlendState.colorMaskGreen || in syncState()
190 blendState.colorMaskBlue != mCurBlendState.colorMaskBlue || in syncState()
191 blendState.colorMaskAlpha != mCurBlendState.colorMaskAlpha) in syncState()
206 if (state.getBlendState().dither != mCurBlendState.dither) in syncState()
809 mCurBlendState.sourceBlendRGB = blendState.sourceBlendRGB; in setBlendFuncsEquations()
810 mCurBlendState.destBlendRGB = blendState.destBlendRGB; in setBlendFuncsEquations()
811 mCurBlendState.blendEquationRGB = blendState.blendEquationRGB; in setBlendFuncsEquations()
812 mCurBlendState.blendEquationAlpha = blendState.blendEquationAlpha; in setBlendFuncsEquations()
818 mCurBlendState.blend = enabled; in setBlendEnabled()
824 mCurBlendState.dither = dither; in setDither()
859 mCurBlendState.colorMaskRed = false; in setColorMask()
860 mCurBlendState.colorMaskGreen = true; in setColorMask()
861 mCurBlendState.colorMaskBlue = false; in setColorMask()
862 mCurBlendState.colorMaskAlpha = false; in setColorMask()
864 mCurBlendState.blend = true; in setColorMask()
865 mCurBlendState.sourceBlendRGB = GL_ZERO; in setColorMask()
866 mCurBlendState.sourceBlendAlpha = GL_ZERO; in setColorMask()
867 mCurBlendState.destBlendRGB = GL_ONE; in setColorMask()
868 mCurBlendState.destBlendAlpha = GL_ONE; in setColorMask()
869 mCurBlendState.blendEquationRGB = GL_FUNC_ADD; in setColorMask()
870 mCurBlendState.blendEquationAlpha = GL_FUNC_ADD; in setColorMask()
876 mCurBlendState.colorMaskRed = red; in setColorMask()
877 mCurBlendState.colorMaskGreen = green; in setColorMask()
878 mCurBlendState.colorMaskBlue = blue; in setColorMask()
879 mCurBlendState.colorMaskAlpha = alpha; in setColorMask()