diff options
author | Daniel Schürmann <[email protected]> | 2019-04-03 17:29:20 +0200 |
---|---|---|
committer | Connor Abbott <[email protected]> | 2019-07-08 14:02:50 +0200 |
commit | c31f470066b7534d6bff03674aed78bb3bf7408b (patch) | |
tree | 21026e0fd7660a1dd8d702910dccd0781a953e4c /src/compiler/nir/nir.h | |
parent | 1d327689f9156745ce8bf387b99b02c41a7e67e8 (diff) |
anv,nir: Move lower_input_attachments pass from ANV to NIR.
Reviewed-by: Connor Abbott <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/compiler/nir/nir.h')
-rw-r--r-- | src/compiler/nir/nir.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 700174ca02a..ffb6908073b 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -3494,6 +3494,8 @@ bool nir_lower_non_uniform_access(nir_shader *shader, bool nir_lower_idiv(nir_shader *shader); +bool nir_lower_input_attachments(nir_shader *shader); + bool nir_lower_clip_vs(nir_shader *shader, unsigned ucp_enables, bool use_vars); bool nir_lower_clip_fs(nir_shader *shader, unsigned ucp_enables); bool nir_lower_clip_cull_distance_arrays(nir_shader *nir); |