Lines Matching refs:sfactorRGB
127 GLenum sfactorRGB, GLenum dfactorRGB, in validate_blend_factors() argument
130 if (!legal_src_factor(ctx, sfactorRGB)) { in validate_blend_factors()
133 _mesa_enum_to_string(sfactorRGB)); in validate_blend_factors()
144 if (sfactorA != sfactorRGB && !legal_src_factor(ctx, sfactorA)) { in validate_blend_factors()
206 GLenum sfactorRGB, GLenum dfactorRGB, in skip_blend_state_update() argument
215 if (ctx->Color.Blend[buf].SrcRGB != sfactorRGB || in skip_blend_state_update()
225 if (ctx->Color.Blend[0].SrcRGB != sfactorRGB || in skip_blend_state_update()
239 GLenum sfactorRGB, GLenum dfactorRGB, in blend_func_separate() argument
248 ctx->Color.Blend[buf].SrcRGB = sfactorRGB; in blend_func_separate()
268 ctx->Driver.BlendFuncSeparate(ctx, sfactorRGB, dfactorRGB, in blend_func_separate()
320 _mesa_BlendFuncSeparate( GLenum sfactorRGB, GLenum dfactorRGB, in _mesa_BlendFuncSeparate() argument
327 _mesa_enum_to_string(sfactorRGB), in _mesa_BlendFuncSeparate()
334 if (skip_blend_state_update(ctx, sfactorRGB, dfactorRGB, sfactorA, dfactorA)) in _mesa_BlendFuncSeparate()
338 sfactorRGB, dfactorRGB, in _mesa_BlendFuncSeparate()
343 blend_func_separate(ctx, sfactorRGB, dfactorRGB, sfactorA, dfactorA); in _mesa_BlendFuncSeparate()
348 _mesa_BlendFuncSeparate_no_error(GLenum sfactorRGB, GLenum dfactorRGB, in _mesa_BlendFuncSeparate_no_error() argument
353 if (skip_blend_state_update(ctx, sfactorRGB, dfactorRGB, sfactorA, dfactorA)) in _mesa_BlendFuncSeparate_no_error()
356 blend_func_separate(ctx, sfactorRGB, dfactorRGB, sfactorA, dfactorA); in _mesa_BlendFuncSeparate_no_error()
379 blend_func_separatei(GLuint buf, GLenum sfactorRGB, GLenum dfactorRGB, in blend_func_separatei() argument
397 if (ctx->Color.Blend[buf].SrcRGB == sfactorRGB && in blend_func_separatei()
404 sfactorRGB, dfactorRGB, in blend_func_separatei()
413 ctx->Color.Blend[buf].SrcRGB = sfactorRGB; in blend_func_separatei()
424 _mesa_BlendFuncSeparateiARB_no_error(GLuint buf, GLenum sfactorRGB, in _mesa_BlendFuncSeparateiARB_no_error() argument
428 blend_func_separatei(buf, sfactorRGB, dfactorRGB, sfactorA, dfactorA, in _mesa_BlendFuncSeparateiARB_no_error()
437 _mesa_BlendFuncSeparateiARB(GLuint buf, GLenum sfactorRGB, GLenum dfactorRGB, in _mesa_BlendFuncSeparateiARB() argument
440 blend_func_separatei(buf, sfactorRGB, dfactorRGB, sfactorA, dfactorA, in _mesa_BlendFuncSeparateiARB()