From: Charmaine Lee Date: Thu, 20 Apr 2017 01:34:36 +0000 (-0700) Subject: svga: use the winsys interface to invalidate surface X-Git-Tag: upstream/18.1.0~10458 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=019d5d534682145a3d5921b061ea46f8c872d6a0;p=platform%2Fupstream%2Fmesa.git svga: use the winsys interface to invalidate surface Instead of directly sending the InvalidateGBSurface command, this patch uses the invalidate_surface interface. Fixes Linux VM piglit failures including ext_texture_array-gen-mipmap, fbo-generatemipmap-array S3TC_DXT1 Reviewed-by: Brian Paul --- diff --git a/src/gallium/drivers/svga/svga_surface.c b/src/gallium/drivers/svga/svga_surface.c index 795a7b8..6aab34a 100644 --- a/src/gallium/drivers/svga/svga_surface.c +++ b/src/gallium/drivers/svga/svga_surface.c @@ -524,11 +524,7 @@ svga_validate_surface_view(struct svga_context *svga, struct svga_surface *s) * need to update the host-side copy with the invalid * content when the associated mob is first bound to the surface. */ - ret = SVGA3D_InvalidateGBSurface(svga->swc, stex->handle); - if (ret != PIPE_OK) { - s = NULL; - goto done; - } + svga->swc->surface_invalidate(svga->swc, stex->handle); stex->validated = TRUE; }