mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-03 13:40:11 +01:00
i965: Fix brw_memory_barrier() for SKL.
This works as-is on SKL, only the assertion needs to be relaxed. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
f909469137
commit
2cdb24a7c2
1 changed files with 1 additions and 1 deletions
|
|
@ -197,7 +197,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 |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue