diff options
author | Keith Whitwell <[email protected]> | 2008-05-21 08:29:19 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-05-23 09:16:55 +0100 |
commit | b5c8b3fba6ac90a0d83e02bfe432142f1adee9e5 (patch) | |
tree | bf665d880fed4ee1d78e60713103a8774080ad76 /src/gallium/auxiliary/translate/translate.h | |
parent | 9343779a8c800cf72e38b09b6f5087a0df258c08 (diff) |
translate: mark functions as PIPE_CDECL
Diffstat (limited to 'src/gallium/auxiliary/translate/translate.h')
-rw-r--r-- | src/gallium/auxiliary/translate/translate.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gallium/auxiliary/translate/translate.h b/src/gallium/auxiliary/translate/translate.h index b8210af50cf..c3b754a902b 100644 --- a/src/gallium/auxiliary/translate/translate.h +++ b/src/gallium/auxiliary/translate/translate.h @@ -71,15 +71,15 @@ struct translate { const void *ptr, unsigned stride ); - void (*run_elts)( struct translate *, - const unsigned *elts, - unsigned count, - void *output_buffer); - - void (*run)( struct translate *, - unsigned start, - unsigned count, - void *output_buffer); + void (PIPE_CDECL *run_elts)( struct translate *, + const unsigned *elts, + unsigned count, + void *output_buffer); + + void (PIPE_CDECL *run)( struct translate *, + unsigned start, + unsigned count, + void *output_buffer); }; |