diff options
author | Kenneth Graunke <[email protected]> | 2015-10-02 00:01:23 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2015-10-28 21:15:29 -0700 |
commit | 77f58c04cc287b72e2b859d71591da158db6830a (patch) | |
tree | 7d25ffa56bc601f9d2e0e9cfb63bd91590348c02 /src/glsl/nir/nir.h | |
parent | 9c8208f2c15445b00ba170ff96a9ea4ce6c083e1 (diff) |
nir: Copy "patch" flag from ir_variable to nir_variable.
This was introduced in GLSL IR after NIR development had branched.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src/glsl/nir/nir.h')
-rw-r--r-- | src/glsl/nir/nir.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/glsl/nir/nir.h b/src/glsl/nir/nir.h index 04a21a7ead6..ac422514d52 100644 --- a/src/glsl/nir/nir.h +++ b/src/glsl/nir/nir.h @@ -171,6 +171,7 @@ typedef struct { unsigned read_only:1; unsigned centroid:1; unsigned sample:1; + unsigned patch:1; unsigned invariant:1; /** |