[Mesa-dev] [PATCH 2/2] i965: Fix brw_memory_barrier() for SKL.

Jason Ekstrand jason at jlekstrand.net
Fri Aug 7 16:54:16 PDT 2015


I don't see anything in the docs that changes with SKL that affects
this function.

Reviewed-by: Jason Ekstrand <jason.ekstrand at intel.com>

On Wed, May 13, 2015 at 9:37 AM, Francisco Jerez <currojerez at riseup.net> wrote:
> This works as-is on SKL, only the assertion needs to be relaxed.
> ---
>  src/mesa/drivers/dri/i965/brw_program.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_program.c b/src/mesa/drivers/dri/i965/brw_program.c
> index e5c0d3c..aea26e2 100644
> --- a/src/mesa/drivers/dri/i965/brw_program.c
> +++ b/src/mesa/drivers/dri/i965/brw_program.c
> @@ -196,7 +196,7 @@ brw_memory_barrier(struct gl_context *ctx, GLbitfield barriers)
>     unsigned bits = (PIPE_CONTROL_DATA_CACHE_INVALIDATE |
>                      PIPE_CONTROL_NO_WRITE |
>                      PIPE_CONTROL_CS_STALL);
> -   assert(brw->gen >= 7 && brw->gen <= 8);
> +   assert(brw->gen >= 7 && brw->gen <= 9);
>
>     if (barriers & (GL_VERTEX_ATTRIB_ARRAY_BARRIER_BIT |
>                     GL_ELEMENT_ARRAY_BARRIER_BIT |
> --
> 2.3.5
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list