Re: [Mesa-dev] [PATCH v2] virgl: Set bind when creating temp resource.

2019-04-09 Thread Erik Faye-Lund
Nice move to put the logic in its own function! Reviewed-by: Erik Faye-Lund On Mon, 2019-04-08 at 09:39 -0700, Lepton Wu wrote: > virgl render complains about "Illegal resource" when running > dEQP-EGL.functional.color_clears.single_context.gles2.rgb888_window, > the reason is that a zero bind v

[Mesa-dev] [PATCH v2] virgl: Set bind when creating temp resource.

2019-04-08 Thread Lepton Wu
virgl render complains about "Illegal resource" when running dEQP-EGL.functional.color_clears.single_context.gles2.rgb888_window, the reason is that a zero bind value was given for temp resource. Signed-off-by: Lepton Wu --- src/gallium/drivers/virgl/virgl_texture.c | 10 ++ 1 file chang