diff options
author | Jason Ekstrand <[email protected]> | 2018-03-21 17:30:22 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2018-06-22 20:15:57 -0700 |
commit | b0c643d8f579a3e1e45a08f6d9de099f2c45898b (patch) | |
tree | ac8542d300020594bb08acf15b2d4dbf629208c2 /src/compiler/spirv/vtn_private.h | |
parent | 2100c2f3a25d402f3788b3049eb2c1ee3a01b42e (diff) |
spirv: Use NIR per-member splitting
Before, we were doing structure splitting in spirv_to_nir.
Unfortunately, this doesn't really work when you think about passing
struct pointers into functions. Doing it later in NIR is a much better
plan.
Acked-by: Rob Clark <[email protected]>
Acked-by: Bas Nieuwenhuizen <[email protected]>
Acked-by: Dave Airlie <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/compiler/spirv/vtn_private.h')
-rw-r--r-- | src/compiler/spirv/vtn_private.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/compiler/spirv/vtn_private.h b/src/compiler/spirv/vtn_private.h index 8fa6ee08739..bcd8b3e3709 100644 --- a/src/compiler/spirv/vtn_private.h +++ b/src/compiler/spirv/vtn_private.h @@ -461,7 +461,6 @@ struct vtn_variable { bool patch; nir_variable *var; - nir_variable **members; int shared_location; |