diff options
author | Brian <[email protected]> | 2007-11-05 16:38:07 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-05 16:38:07 -0700 |
commit | ced9c0f8c4246c055aee85f428af705f232702bc (patch) | |
tree | 2038ef7a955cc87c31b9cf07d41155e053c754f6 /src/mesa/state_tracker/st_framebuffer.c | |
parent | 9b0f71e37f2ed129997b247d58f8d5e9004f4935 (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.c | 2 |
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 ec120ba39ab..b43b9b7b9b1 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); |