diff options
author | Brian Paul <brianp@vmware.com> | 2010-02-02 18:54:12 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2010-02-02 18:54:53 -0700 |
commit | 256f7f5ab2123bae9549e4f572276e200dc1ae76 (patch) | |
tree | 66396624a576ac4d2afe81cdfab6f8d630a9c237 /src/gallium/auxiliary/draw/draw_private.h | |
parent | d6e55520e479d8a2fb42eca0b6bd177bd32adf06 (diff) |
draw: add const qualifiers, fix return types
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_private.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_private.h b/src/gallium/auxiliary/draw/draw_private.h index 6a7190e975..69466d8749 100644 --- a/src/gallium/auxiliary/draw/draw_private.h +++ b/src/gallium/auxiliary/draw/draw_private.h @@ -280,8 +280,8 @@ void draw_gs_destroy( struct draw_context *draw ); /******************************************************************************* * Common shading code: */ -int draw_current_shader_outputs(struct draw_context *draw); -int draw_current_shader_position_output(struct draw_context *draw); +uint draw_current_shader_outputs(const struct draw_context *draw); +uint draw_current_shader_position_output(const struct draw_context *draw); /******************************************************************************* * Vertex processing (was passthrough) code: |