diff options
author | Brian <[email protected]> | 2007-11-02 13:25:44 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-05 08:04:48 -0700 |
commit | bffed01e272b9a848aa7980ae72ae291d2677d05 (patch) | |
tree | d42c86e74ea5d9ada852ac4f9999c59234dbf00e /src/mesa/state_tracker/st_context.c | |
parent | 01b71b8f7a77b3eb5ccc009342c1ebdc7b3dda80 (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.c | 10 |
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 db933b86e41..fbce19b58eb 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) |