diff options
author | Benjamin Otte <otte@redhat.com> | 2010-05-17 20:45:42 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-05-18 13:43:27 +0200 |
commit | c489f67d1d1d6079f9b58b726ed42beea1dfc44e (patch) | |
tree | fd1c3328e655f3c69da7b2f7cee7aee192b68e4a /src/cairo-gl-composite.c | |
parent | c8008e118a54d62690d6555c9ffabf734c39e69f (diff) |
gl: Make a bunch of functions static
They are no longer used outside of cairo_gl_composite_t.
Diffstat (limited to 'src/cairo-gl-composite.c')
-rw-r--r-- | src/cairo-gl-composite.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cairo-gl-composite.c b/src/cairo-gl-composite.c index c21ee0ed..40efbf1b 100644 --- a/src/cairo-gl-composite.c +++ b/src/cairo-gl-composite.c @@ -610,7 +610,7 @@ _cairo_gl_set_tex_combine_constant_color (cairo_gl_context_t *ctx, } } -void +static void _cairo_gl_set_src_operand (cairo_gl_context_t *ctx, cairo_gl_composite_t *setup) { @@ -700,7 +700,7 @@ _cairo_gl_set_src_operand (cairo_gl_context_t *ctx, * for creating the "source alpha" value (src.aaaa * mask.argb) required by * component alpha rendering. */ -void +static void _cairo_gl_set_src_alpha_operand (cairo_gl_context_t *ctx, cairo_gl_composite_t *setup) { @@ -794,7 +794,7 @@ _cairo_gl_set_radial_gradient_mask_operand (cairo_gl_context_t *ctx, /* This is like _cairo_gl_set_src_alpha_operand, for component alpha setup * of the mask part of IN to produce a "source alpha" value. */ -void +static void _cairo_gl_set_component_alpha_mask_operand (cairo_gl_context_t *ctx, cairo_gl_composite_t *setup) { @@ -876,7 +876,7 @@ _cairo_gl_set_component_alpha_mask_operand (cairo_gl_context_t *ctx, } } -void +static void _cairo_gl_set_mask_operand (cairo_gl_context_t *ctx, cairo_gl_composite_t *setup) { |