summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_framebuffer.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-11-05 16:38:07 -0700
committerBrian <brian.paul@tungstengraphics.com>2007-11-05 16:38:07 -0700
commitced9c0f8c4246c055aee85f428af705f232702bc (patch)
tree2038ef7a955cc87c31b9cf07d41155e053c754f6 /src/mesa/state_tracker/st_framebuffer.c
parent9b0f71e37f2ed129997b247d58f8d5e9004f4935 (diff)
don't include mtypes.h in st_public.h
Diffstat (limited to 'src/mesa/state_tracker/st_framebuffer.c')
-rw-r--r--src/mesa/state_tracker/st_framebuffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_framebuffer.c b/src/mesa/state_tracker/st_framebuffer.c
index ec120ba39a..b43b9b7b9b 100644
--- a/src/mesa/state_tracker/st_framebuffer.c
+++ b/src/mesa/state_tracker/st_framebuffer.c
@@ -96,7 +96,7 @@ struct st_framebuffer *st_create_framebuffer( const __GLcontextModes *visual,
void st_resize_framebuffer( struct st_framebuffer *stfb,
- GLuint width, GLuint height )
+ uint width, uint height )
{
if (stfb->Base.Width != width || stfb->Base.Height != height) {
GET_CURRENT_CONTEXT(ctx);