diff options
author | Jason Ekstrand <[email protected]> | 2018-10-05 09:13:25 -0500 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-10-29 17:09:08 +0100 |
commit | 19064b8c3a8e0f7b9081a0564f1c7c79a1953d0b (patch) | |
tree | 0360a0cb86329b2aabcb334764119c28c1be3eb0 /src/compiler/Makefile.sources | |
parent | e8a5fa054d8d0b97f36eaad614ee6f456b8138b7 (diff) |
nir: Add a pass for gathering transform feedback info
This is different from the GL_ARB_spirv pass because it generates a much
simpler data structure that isn't tied to OpenGL and mtypes.h.
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.sources')
-rw-r--r-- | src/compiler/Makefile.sources | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index b65bb9b80b9..ae170f02e82 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -216,6 +216,7 @@ NIR_FILES = \ nir/nir_format_convert.h \ nir/nir_from_ssa.c \ nir/nir_gather_info.c \ + nir/nir_gather_xfb_info.c \ nir/nir_gs_count_vertices.c \ nir/nir_inline_functions.c \ nir/nir_instr_set.c \ @@ -308,7 +309,8 @@ NIR_FILES = \ nir/nir_validate.c \ nir/nir_vla.h \ nir/nir_worklist.c \ - nir/nir_worklist.h + nir/nir_worklist.h \ + nir/nir_xfb_info.h SPIRV_GENERATED_FILES = \ spirv/spirv_info.c \ |