diff options
author | Brian <[email protected]> | 2008-08-25 11:30:57 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2008-08-25 11:30:57 -0600 |
commit | 60ac76175b6457ecc1cd8bd7a25cb79b2d529434 (patch) | |
tree | 70278cf8eaf835a049579092cd96ae2771d9c624 /src/gallium/auxiliary/draw/draw_context.h | |
parent | a644c5a850242376e6ab03f7f4bdbfb8a232490f (diff) |
gallium: added const qualifiers on some draw funcs
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.h b/src/gallium/auxiliary/draw/draw_context.h index b8f2bfa3327..0ab3681b647 100644 --- a/src/gallium/auxiliary/draw/draw_context.h +++ b/src/gallium/auxiliary/draw/draw_context.h @@ -84,11 +84,11 @@ draw_install_pstipple_stage(struct draw_context *draw, struct pipe_context *pipe int -draw_find_vs_output(struct draw_context *draw, +draw_find_vs_output(const struct draw_context *draw, uint semantic_name, uint semantic_index); uint -draw_num_vs_outputs(struct draw_context *draw); +draw_num_vs_outputs(const struct draw_context *draw); |