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);
#ifndef ST_PUBLIC_H
#define ST_PUBLIC_H
-#include "mtypes.h"
+#include "pipe/p_compiler.h"
#define ST_SURFACE_FRONT_LEFT 0
uint mask);
struct st_framebuffer *st_create_framebuffer( const __GLcontextModes *visual,
- GLboolean createRenderbuffers,
+ boolean createRenderbuffers,
void *privateData);
void st_resize_framebuffer( struct st_framebuffer *stfb,
- GLuint width, GLuint height );
+ uint width, uint height );
struct pipe_surface *st_get_framebuffer_surface(struct st_framebuffer *stfb,
uint surfIndex);