diff options
author | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2017-06-22 13:01:06 +0200 |
---|---|---|
committer | Nicolai Hähnle <nicolai.haehnle@amd.com> | 2017-07-13 13:27:41 +0200 |
commit | 4226dae01d212ede86c3e6d39040ee67593a5f26 (patch) | |
tree | 7535247d8e5f108bbbcbedce643ae4ba41790439 | |
parent | ab07af81548cb47560115335088ac0912ef1d688 (diff) |
mesa: add gl_linked_shader::nir
-rw-r--r-- | src/mesa/main/mtypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 987a73e9d4..9046dcaa12 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -2521,6 +2521,7 @@ struct gl_linked_shader unsigned num_combined_uniform_components; struct exec_list *ir; + struct nir_shader *nir; struct exec_list *packed_varyings; struct exec_list *fragdata_arrays; struct glsl_symbol_table *symbols; |