diff options
author | Ian Romanick <[email protected]> | 2016-12-12 13:37:46 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2016-12-19 15:55:43 -0800 |
commit | 5085b640313f806150729a197c438a0cfea35f49 (patch) | |
tree | 9e5f31d745cfb9bdbc94f7a2ab50ab47f812677a /src/compiler/Makefile.sources | |
parent | d56bd07bb3b6821eca961dde15c40f179be99e2d (diff) |
glsl: Use simpler visitor to determine which UBO and SSBO blocks are used
Very soon this visitor will get more complicated. The users of the
existing ir_variable_refcount visitor won't need the coming
functionality, and this use doesn't need much of the functionality of
ir_variable_refcount.
v2: ir_array_refcount_visitor::get_variable_entry cannot return NULL, so
don't check it. Suggested by Timothy.
Signed-off-by: Ian Romanick <[email protected]>
Cc: [email protected]
Reviewed-by: Timothy Arceri <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/compiler/Makefile.sources')
-rw-r--r-- | src/compiler/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compiler/Makefile.sources b/src/compiler/Makefile.sources index 17b15deca82..15f410ff621 100644 --- a/src/compiler/Makefile.sources +++ b/src/compiler/Makefile.sources @@ -29,6 +29,8 @@ LIBGLSL_FILES = \ glsl/glsl_to_nir.cpp \ glsl/glsl_to_nir.h \ glsl/hir_field_selection.cpp \ + glsl/ir_array_refcount.cpp \ + glsl/ir_array_refcount.h \ glsl/ir_basic_block.cpp \ glsl/ir_basic_block.h \ glsl/ir_builder.cpp \ |