summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2010-01-16 23:33:38 +0800
committerChia-I Wu <olvaffe@gmail.com>2010-01-16 23:33:38 +0800
commit8c6777e9c33a6131dccabc72160d1d5756c5a1ef (patch)
tree67c0b4cc42a7f3005da92cafecbb9676df95824e
parente048902410c6aa57b4afe019a8b559cec00cc610 (diff)
Remove unnecessary const qualifier.
-rw-r--r--st_api.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/st_api.h b/st_api.h
index 97415ac..1908504 100644
--- a/st_api.h
+++ b/st_api.h
@@ -126,7 +126,7 @@ struct st_framebuffer
* @att is either FRONT_LEFT or FRONT_RIGHT.
*/
boolean (*flush_front)(struct st_framebuffer *fb,
- const enum st_framebuffer_attachment att);
+ enum st_framebuffer_attachment att);
/**
* The api state tracker asks for the textures it needs.
@@ -141,7 +141,7 @@ struct st_framebuffer
*/
boolean (*validate)(struct st_framebuffer *fb,
const enum st_framebuffer_attachment *att,
- const unsigned count,
+ unsigned count,
struct pipe_texture **out);
/**