diff options
author | Brian Paul <[email protected]> | 2010-04-28 11:43:54 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-28 11:43:54 -0600 |
commit | dd3b98bdf67df9a5b1127bf7d50bbb6691597bfb (patch) | |
tree | a75963d0a0c72b38e7b3bb365ad2a8a147952496 /src/gallium/auxiliary/draw | |
parent | 2479c3f3ee0383bbb7b4d6afe5a2fdc93ef69106 (diff) |
draw: add missing function parameter
Diffstat (limited to 'src/gallium/auxiliary/draw')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs_aos.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs_aos.c b/src/gallium/auxiliary/draw/draw_vs_aos.c index e7121f36541..e1e07e0f029 100644 --- a/src/gallium/auxiliary/draw/draw_vs_aos.c +++ b/src/gallium/auxiliary/draw/draw_vs_aos.c @@ -2093,7 +2093,8 @@ static boolean build_vertex_program( struct draw_vs_varient_aos_sse *varient, static void vaos_set_buffer( struct draw_vs_varient *varient, unsigned buf, const void *ptr, - unsigned stride ) + unsigned stride, + unsigned max_stride) { struct draw_vs_varient_aos_sse *vaos = (struct draw_vs_varient_aos_sse *)varient; |