diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-10-11 12:01:31 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2011-10-11 11:58:10 +0100 |
commit | a09f70586df52d9d3156d64de5fbc6a2b92a1cce (patch) | |
tree | 0c5057c229c8bdc151128291548aa64a6e53e15d /src/cairo-gl-composite.c | |
parent | 4f5d42f6e59010ceaa68bff9be4353aa5f4d2e53 (diff) |
gl: Remove unused alpha argument from operand_emit
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/cairo-gl-composite.c')
-rw-r--r-- | src/cairo-gl-composite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cairo-gl-composite.c b/src/cairo-gl-composite.c index 382b13b5..5bce04d5 100644 --- a/src/cairo-gl-composite.c +++ b/src/cairo-gl-composite.c @@ -656,8 +656,8 @@ _cairo_gl_composite_emit_vertex (cairo_gl_context_t *ctx, *vb++ = x; *vb++ = y; - _cairo_gl_operand_emit (&ctx->operands[CAIRO_GL_TEX_SOURCE], &vb, x, y, alpha); - _cairo_gl_operand_emit (&ctx->operands[CAIRO_GL_TEX_MASK ], &vb, x, y, alpha); + _cairo_gl_operand_emit (&ctx->operands[CAIRO_GL_TEX_SOURCE], &vb, x, y); + _cairo_gl_operand_emit (&ctx->operands[CAIRO_GL_TEX_MASK ], &vb, x, y); if (ctx->spans) { union fi { @@ -706,7 +706,7 @@ _cairo_gl_composite_emit_glyph_vertex (cairo_gl_context_t *ctx, *vb++ = x; *vb++ = y; - _cairo_gl_operand_emit (&ctx->operands[CAIRO_GL_TEX_SOURCE], &vb, x, y, 0); + _cairo_gl_operand_emit (&ctx->operands[CAIRO_GL_TEX_SOURCE], &vb, x, y); *vb++ = glyph_x; *vb++ = glyph_y; |