Lines Matching refs:glValue
368 GLenum glValue; in init() member
422 …if ((eq.glValue == GL_MIN || eq.glValue == GL_MAX) && (srcFuncNdx > 0 || dstFuncNdx > 0)) // MIN a… in init()
427 "Equations " + getBlendEquationName(eq.glValue) + in init()
428 ", src funcs " + getBlendFactorName(src.glValue) + in init()
429 ", dst funcs " + getBlendFactorName(dst.glValue); in init()
431 if (eq.glValue != GL_MIN && eq.glValue != GL_MAX) in init()
435 …paramSets.push_back(BlendParams(eq.glValue, src.glValue, dst.glValue, eq.glValue, src.glValue, dst… in init()
464 "RGB " + dstOrSrcStr + " func " + getBlendFactorName(funcRGB.glValue) + in init()
465 ", alpha " + dstOrSrcStr + " func " + getBlendFactorName(funcAlpha.glValue); in init()
470 …aramSets.push_back(BlendParams(GL_FUNC_ADD, funcRGB.glValue, GL_ONE, GL_FUNC_ADD, funcAlpha.glVa… in init()
471 …ramSets.push_back(BlendParams(GL_FUNC_ADD, funcRGB.glValue, GL_ZERO, GL_FUNC_ADD, funcAlpha.glVa… in init()
472 …mSets.push_back(BlendParams(GL_FUNC_ADD, funcRGB.glValue, GL_SRC_COLOR, GL_FUNC_ADD, funcAlpha.gl… in init()
473 …mSets.push_back(BlendParams(GL_FUNC_ADD, funcRGB.glValue, GL_DST_COLOR, GL_FUNC_ADD, funcAlpha.gl… in init()
504 "RGB equation " + getBlendEquationName(eqRGB.glValue) + in init()
505 ", alpha equation " + getBlendEquationName(eqAlpha.glValue); in init()
508 …paramSets.push_back(BlendParams(eqRGB.glValue, GL_ONE, GL_ONE, eqAlpha.glValue, GL_ONE, GL_ONE, de… in init()