xlib: Implement lp_winsys::destroy.

This commit is contained in:
José Fonseca 2009-08-29 20:33:28 +01:00
parent 9053bb0d40
commit d336ef410a
1 changed files with 9 additions and 0 deletions

View File

@ -364,6 +364,13 @@ no_xm_dt:
}
static void
xm_destroy( struct llvmpipe_winsys *ws )
{
FREE(ws);
}
static struct llvmpipe_winsys *
xlib_create_llvmpipe_winsys( void )
{
@ -373,6 +380,8 @@ xlib_create_llvmpipe_winsys( void )
if (!ws)
return NULL;
ws->base.destroy = xm_destroy;
ws->base.is_displaytarget_format_supported = xm_is_displaytarget_format_supported;
ws->base.displaytarget_create = xm_displaytarget_create;