From: Erik Faye-Lund Date: Wed, 10 Apr 2019 10:22:34 +0000 (+0200) Subject: virgl: do not warn about display-target binding X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7394ef4a7293e7ec6322faf18e7ddeef9c2c0183;p=mesa.git virgl: do not warn about display-target binding We never want to display a transfer-temp surface, so let's ignore that flag when calculating the new binding flags. Signed-off-by: Erik Faye-Lund Reviewed-by: Gurchetan Singh --- diff --git a/src/gallium/drivers/virgl/virgl_texture.c b/src/gallium/drivers/virgl/virgl_texture.c index c5226f21421..75ee059fe76 100644 --- a/src/gallium/drivers/virgl/virgl_texture.c +++ b/src/gallium/drivers/virgl/virgl_texture.c @@ -64,7 +64,7 @@ static void virgl_copy_region_with_blit(struct pipe_context *pipe, static unsigned temp_bind(unsigned orig) { unsigned warn = ~(PIPE_BIND_RENDER_TARGET | PIPE_BIND_DEPTH_STENCIL | - PIPE_BIND_SAMPLER_VIEW); + PIPE_BIND_SAMPLER_VIEW | PIPE_BIND_DISPLAY_TARGET); if (orig & warn) fprintf(stderr, "Waring, possibly unhandled bind: %x\n", orig & warn); return orig & (PIPE_BIND_DEPTH_STENCIL | PIPE_BIND_RENDER_TARGET);