From: Erik Faye-Lund Date: Tue, 12 Mar 2019 12:57:14 +0000 (+0100) Subject: virgl: make sure bind is set for non-buffers X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f31b65f1c1444e36baffb414aa11de2d70a14c19;p=mesa.git virgl: make sure bind is set for non-buffers Otherwise, virglrenderer will reject the resource. 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 e0c152dd562..5cb01cb18a0 100644 --- a/src/gallium/drivers/virgl/virgl_texture.c +++ b/src/gallium/drivers/virgl/virgl_texture.c @@ -97,6 +97,9 @@ static void virgl_init_temp_resource_from_box(struct pipe_resource *res, else res->target = PIPE_TEXTURE_2D; + if (res->target != PIPE_BUFFER) + res->bind = PIPE_BIND_RENDER_TARGET; + switch (res->target) { case PIPE_TEXTURE_1D_ARRAY: case PIPE_TEXTURE_2D_ARRAY: