Update xlib driver to use newer state tracker context/framebuffer functions.

XMesaContext has an st_context * which contains a mesa context.
This commit is contained in:
Brian
2007-11-05 15:59:55 -07:00
parent 9a563d5e69
commit e39f1b4cbe
8 changed files with 170 additions and 143 deletions

View File

@@ -174,6 +174,13 @@ void st_make_current(struct st_context *st,
}
void st_copy_context_state(struct st_context *dst,
struct st_context *src,
uint mask)
{
_mesa_copy_context(dst->ctx, src->ctx, mask);
}
void st_init_driver_functions(struct dd_function_table *functions)
{