diff options
author | Marek Olšák <[email protected]> | 2019-10-25 15:18:32 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-11-04 18:17:34 -0500 |
commit | 4319cc8c0f51a9e103167b35c02d9460a9840170 (patch) | |
tree | 81e58ff37dece143da1197c11e35f7e6b286fdc3 /src/compiler/spirv/vtn_variables.c | |
parent | 08dc541b662c39ebae80935d4845b2f40e92d028 (diff) |
nir: pack nir_variable::data::xfb_*
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/compiler/spirv/vtn_variables.c')
-rw-r--r-- | src/compiler/spirv/vtn_variables.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/spirv/vtn_variables.c b/src/compiler/spirv/vtn_variables.c index 188931ec77b..af611b68b13 100644 --- a/src/compiler/spirv/vtn_variables.c +++ b/src/compiler/spirv/vtn_variables.c @@ -1586,12 +1586,12 @@ apply_var_decoration(struct vtn_builder *b, case SpvDecorationXfbBuffer: var_data->explicit_xfb_buffer = true; - var_data->xfb_buffer = dec->operands[0]; + var_data->xfb.buffer = dec->operands[0]; var_data->always_active_io = true; break; case SpvDecorationXfbStride: var_data->explicit_xfb_stride = true; - var_data->xfb_stride = dec->operands[0]; + var_data->xfb.stride = dec->operands[0]; break; case SpvDecorationOffset: var_data->explicit_offset = true; |