i915g: report that all vertex formats are supported

So that u_vbuf isn't enabled.
This commit is contained in:
Marek Olšák 2012-04-11 15:16:09 +02:00
parent 428855eea3
commit 79eafc14ca
1 changed files with 3 additions and 1 deletions

View File

@ -337,8 +337,10 @@ i915_is_format_supported(struct pipe_screen *screen,
list = depth_supported;
else if (tex_usage & PIPE_BIND_RENDER_TARGET)
list = render_supported;
else
else if (tex_usage & PIPE_BIND_SAMPLER_VIEW)
list = tex_supported;
else
return TRUE; /* PIPE_BIND_{VERTEX,INDEX}_BUFFER */
for (i = 0; list[i] != PIPE_FORMAT_NONE; i++) {
if (list[i] == format)