diff options
author | Erik Faye-Lund <[email protected]> | 2019-04-10 12:22:34 +0200 |
---|---|---|
committer | Erik Faye-Lund <[email protected]> | 2019-04-11 09:53:22 +0200 |
commit | 7394ef4a7293e7ec6322faf18e7ddeef9c2c0183 (patch) | |
tree | 8710bac34ae6d14fddde327796b47d1f80f54f23 /src/gallium/drivers/virgl | |
parent | 27d94a83cd070baae1d0196194796ea4ef30691d (diff) |
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 <[email protected]>
Reviewed-by: Gurchetan Singh <[email protected]>
Diffstat (limited to 'src/gallium/drivers/virgl')
-rw-r--r-- | src/gallium/drivers/virgl/virgl_texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |