mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 03:08:05 +02:00
draw: Decorate callbacks with PIPE_CDECL.
This commit is contained in:
parent
7a986792da
commit
ff44dd5cde
1 changed files with 8 additions and 8 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue