diff options
author | Brian <[email protected]> | 2007-11-05 16:15:43 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-05 16:15:43 -0700 |
commit | 91564eedcc5e98e28d749267ac81ffd4082b4147 (patch) | |
tree | f6627d3d2bac227ffafcd543d6f79ccf08264148 /src/mesa/state_tracker/st_public.h | |
parent | e39f1b4cbea6d41dc09430bd3d811cb7bbdea5f8 (diff) |
Remove some temporary state tracker context/framebuffer_create functions.
Diffstat (limited to 'src/mesa/state_tracker/st_public.h')
-rw-r--r-- | src/mesa/state_tracker/st_public.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/mesa/state_tracker/st_public.h b/src/mesa/state_tracker/st_public.h index c94e8d32c8a..b21a8d3886d 100644 --- a/src/mesa/state_tracker/st_public.h +++ b/src/mesa/state_tracker/st_public.h @@ -39,20 +39,16 @@ struct st_context; struct st_framebuffer; - struct pipe_context; +struct pipe_surface; -struct st_context *st_create_context( GLcontext *ctx, - struct pipe_context *pipe); -struct st_context *st_create_context2(struct pipe_context *pipe, - const __GLcontextModes *visual, - struct st_context *share); +struct st_context *st_create_context(struct pipe_context *pipe, + const __GLcontextModes *visual, + struct st_context *share); void st_destroy_context( struct st_context *st ); -void st_destroy_context2( struct st_context *st ); - void st_copy_context_state(struct st_context *dst, struct st_context *src, uint mask); |