diff options
author | Alejandro Piñeiro <[email protected]> | 2017-11-05 12:00:19 +0100 |
---|---|---|
committer | Alejandro Piñeiro <[email protected]> | 2018-07-03 12:37:32 +0200 |
commit | c6230b93587c6a8874b138e8efb9066e32c17381 (patch) | |
tree | 504e2e2446bc85af6c61ab03d399f6cbac58832f /src/compiler/spirv/vtn_private.h | |
parent | 768c275debb2ccf0e3093a893e19345f359b5c58 (diff) |
spirv/nir: add offset at vtn_variable
Also initialize it on var_decoration_cb
This is equivalent to nir_variable.offset, used to store the location
an atomic counter is stored at.
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/compiler/spirv/vtn_private.h')
-rw-r--r-- | src/compiler/spirv/vtn_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/spirv/vtn_private.h b/src/compiler/spirv/vtn_private.h index 21ddacd8d2e..b5199bda633 100644 --- a/src/compiler/spirv/vtn_private.h +++ b/src/compiler/spirv/vtn_private.h @@ -465,6 +465,7 @@ struct vtn_variable { unsigned descriptor_set; unsigned binding; bool explicit_binding; + unsigned offset; unsigned input_attachment_index; bool patch; |