On Tuesday, January 27, 2015 02:32:20 PM Jason Ekstrand wrote:
> I haven't actually seen this bug in the wild, but it's possible that
> someone could ask to do a ST3C PBO download or something.  This protects us

                S3TC (typo) ^^^^

> from accidentally creating a render target with a compressed or otherwise
> non-renderable format.

Reviewed-by: Kenneth Graunke <[email protected]>

> ---
>  src/mesa/drivers/dri/i965/intel_tex.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/src/mesa/drivers/dri/i965/intel_tex.c 
> b/src/mesa/drivers/dri/i965/intel_tex.c
> index 184702f..2d3009a 100644
> --- a/src/mesa/drivers/dri/i965/intel_tex.c
> +++ b/src/mesa/drivers/dri/i965/intel_tex.c
> @@ -323,6 +323,11 @@ intel_set_texture_storage_for_buffer_object(struct 
> gl_context *ctx,
>           perf_debug("Bad PBO alignment; fallback to CPU mapping\n");
>           return false;
>        }
> +
> +      if (!brw->format_supported_as_render_target[image->TexFormat]) {
> +         perf_debug("Non-renderable PBO format; fallback to CPU mapping\n");
> +         return false;
> +      }
>     }
>  
>     assert(intel_texobj->mt == NULL);

Attachment: signature.asc
Description: This is a digitally signed message part.

_______________________________________________
mesa-dev mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to