diff options
author | Michal Krol <[email protected]> | 2008-05-28 15:10:19 +0200 |
---|---|---|
committer | Michal Krol <[email protected]> | 2008-05-28 15:10:19 +0200 |
commit | ff44dd5cde47c81f90c5293b904e1c7edd006be5 (patch) | |
tree | 6d09952f20c53fd9eeedff7a64c57b2511f76ddb | |
parent | 7a986792dabe6556c63b2f2a997c7c6217604e2d (diff) |
draw: Decorate callbacks with PIPE_CDECL.
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_varient.c | 16 |
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 119a3a04b56..784ae41205f 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; |