summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_context.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-11-02 13:25:44 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-11-05 08:04:48 -0700
commitbffed01e272b9a848aa7980ae72ae291d2677d05 (patch)
treed42c86e74ea5d9ada852ac4f9999c59234dbf00e /src/mesa/state_tracker/st_context.c
parent01b71b8f7a77b3eb5ccc009342c1ebdc7b3dda80 (diff)
move st_create_framebuffer() to new st_framebuffer.c file
Diffstat (limited to 'src/mesa/state_tracker/st_context.c')
-rw-r--r--src/mesa/state_tracker/st_context.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mesa/state_tracker/st_context.c b/src/mesa/state_tracker/st_context.c
index db933b86e4..fbce19b58e 100644
--- a/src/mesa/state_tracker/st_context.c
+++ b/src/mesa/state_tracker/st_context.c
@@ -155,16 +155,6 @@ void st_destroy_context( struct st_context *st )
}
-struct st_framebuffer *st_create_framebuffer( const __GLcontextModes *visual )
-{
- struct st_framebuffer *stfb
- = CALLOC_STRUCT(st_framebuffer);
- if (stfb) {
- }
- return stfb;
-}
-
-
void st_make_current(struct st_context *st,
struct st_framebuffer *draw,
struct st_framebuffer *read)