Lines Matching refs:glValue
311 GLenum glValue; in init() member
357 if (dst.glValue == GL_SRC_ALPHA_SATURATE) // SRC_ALPHA_SATURATE is only valid for src func. in init()
362 "Equations " + getBlendEquationName(eq.glValue) + in init()
363 ", src funcs " + getBlendFactorName(src.glValue) + in init()
364 ", dst funcs " + getBlendFactorName(dst.glValue); in init()
367 …paramSets.push_back(BlendParams(eq.glValue, src.glValue, dst.glValue, eq.glValue, src.glValue, dst… in init()
394 …if (!isSrc && (funcRGB.glValue == GL_SRC_ALPHA_SATURATE || funcAlpha.glValue == GL_SRC_ALPHA_SATUR… in init()
399 "RGB " + dstOrSrcStr + " func " + getBlendFactorName(funcRGB.glValue) + in init()
400 ", alpha " + dstOrSrcStr + " func " + getBlendFactorName(funcAlpha.glValue); in init()
405 …aramSets.push_back(BlendParams(GL_FUNC_ADD, funcRGB.glValue, GL_ONE, GL_FUNC_ADD, funcAlpha.glVa… in init()
406 …ramSets.push_back(BlendParams(GL_FUNC_ADD, funcRGB.glValue, GL_ZERO, GL_FUNC_ADD, funcAlpha.glVa… in init()
407 …mSets.push_back(BlendParams(GL_FUNC_ADD, funcRGB.glValue, GL_SRC_COLOR, GL_FUNC_ADD, funcAlpha.gl… in init()
408 …mSets.push_back(BlendParams(GL_FUNC_ADD, funcRGB.glValue, GL_DST_COLOR, GL_FUNC_ADD, funcAlpha.gl… in init()
439 "RGB equation " + getBlendEquationName(eqRGB.glValue) + in init()
440 ", alpha equation " + getBlendEquationName(eqAlpha.glValue); in init()
443 …paramSets.push_back(BlendParams(eqRGB.glValue, GL_ONE, GL_ONE, eqAlpha.glValue, GL_ONE, GL_ONE, de… in init()