summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_vs_aos.h
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-05-29 18:28:02 +0900
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-05-29 18:28:02 +0900
commit6945bcb89370501e0a218bc656e68e30e4dadcda (patch)
treeb37696d75010f6c440a2babc7dbff38949cb1f1f /src/gallium/auxiliary/draw/draw_vs_aos.h
parent62628c4d3d497cbca73fde869c9069fa90e6453e (diff)
draw: Put PIPE_CDECL in the right places.
MSVC seems picky about this.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vs_aos.h')
-rw-r--r--src/gallium/auxiliary/draw/draw_vs_aos.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos.h b/src/gallium/auxiliary/draw/draw_vs_aos.h
index 89a9174151..665b425e68 100644
--- a/src/gallium/auxiliary/draw/draw_vs_aos.h
+++ b/src/gallium/auxiliary/draw/draw_vs_aos.h
@@ -60,12 +60,12 @@ struct x86_function;
#define FPU_RND_NEAREST 2
struct aos_machine;
-typedef void PIPE_CDECL (*lit_func)( struct aos_machine *,
+typedef void (PIPE_CDECL *lit_func)( struct aos_machine *,
float *result,
const float *in,
unsigned count );
-PIPE_CDECL void aos_do_lit( struct aos_machine *machine,
+void PIPE_CDECL aos_do_lit( struct aos_machine *machine,
float *result,
const float *in,
unsigned count );