From: George Sapountzis Date: Fri, 19 Mar 2010 00:38:11 +0000 (+0200) Subject: drm/sw: llvmpipe texture_from_handle X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=016c5c953f05bc8f20cc48d352e1013dd71a98a2;p=mesa.git drm/sw: llvmpipe texture_from_handle Not sure, but judging by softpipe, this hook was forgotten. --- diff --git a/src/gallium/drivers/llvmpipe/lp_texture.c b/src/gallium/drivers/llvmpipe/lp_texture.c index 93ad789c35d..8137f29af52 100644 --- a/src/gallium/drivers/llvmpipe/lp_texture.c +++ b/src/gallium/drivers/llvmpipe/lp_texture.c @@ -464,6 +464,7 @@ llvmpipe_init_screen_texture_funcs(struct pipe_screen *screen) { screen->texture_create = llvmpipe_texture_create; screen->texture_destroy = llvmpipe_texture_destroy; + screen->texture_from_handle = llvmpipe_texture_from_handle; screen->texture_get_handle = llvmpipe_texture_get_handle; screen->get_tex_surface = llvmpipe_get_tex_surface;