summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_vs_varient.c
diff options
context:
space:
mode:
authorMichal Krol <michal@tungstengraphics.com>2008-05-28 15:10:19 +0200
committerMichal Krol <michal@tungstengraphics.com>2008-05-28 15:10:19 +0200
commitff44dd5cde47c81f90c5293b904e1c7edd006be5 (patch)
tree6d09952f20c53fd9eeedff7a64c57b2511f76ddb /src/gallium/auxiliary/draw/draw_vs_varient.c
parent7a986792dabe6556c63b2f2a997c7c6217604e2d (diff)
draw: Decorate callbacks with PIPE_CDECL.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs_varient.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_vs_varient.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_varient.c b/src/gallium/auxiliary/draw/draw_vs_varient.c
index 119a3a04b5..784ae41205 100644
--- a/src/gallium/auxiliary/draw/draw_vs_varient.c
+++ b/src/gallium/auxiliary/draw/draw_vs_varient.c
@@ -130,10 +130,10 @@ static void do_viewport( struct draw_vs_varient_generic *vsvg,
}
-static void vsvg_run_elts( struct draw_vs_varient *varient,
- const unsigned *elts,
- unsigned count,
- void *output_buffer)
+static void PIPE_CDECL vsvg_run_elts( struct draw_vs_varient *varient,
+ const unsigned *elts,
+ unsigned count,
+ void *output_buffer )
{
struct draw_vs_varient_generic *vsvg = (struct draw_vs_varient_generic *)varient;
@@ -186,10 +186,10 @@ static void vsvg_run_elts( struct draw_vs_varient *varient,
}
-static void vsvg_run_linear( struct draw_vs_varient *varient,
- unsigned start,
- unsigned count,
- void *output_buffer )
+static void PIPE_CDECL vsvg_run_linear( struct draw_vs_varient *varient,
+ unsigned start,
+ unsigned count,
+ void *output_buffer )
{
struct draw_vs_varient_generic *vsvg = (struct draw_vs_varient_generic *)varient;