mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 17:30:12 +01:00
move st_create_framebuffer() to new st_framebuffer.c file
This commit is contained in:
parent
01b71b8f7a
commit
bffed01e27
2 changed files with 1 additions and 10 deletions
|
|
@ -232,6 +232,7 @@ STATETRACKER_SOURCES = \
|
|||
state_tracker/st_debug.c \
|
||||
state_tracker/st_draw.c \
|
||||
state_tracker/st_format.c \
|
||||
state_tracker/st_framebuffer.c \
|
||||
state_tracker/st_mesa_to_tgsi.c \
|
||||
state_tracker/st_program.c \
|
||||
state_tracker/st_mipmap_tree.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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue