diff options
author | Jason Ekstrand <[email protected]> | 2015-03-17 11:29:01 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-03-23 01:01:14 -0700 |
commit | a55af2699feb8f64d6f480b223204da071606721 (patch) | |
tree | 963cc025352f636449af0954a13af840a015b2fe /src/mesa/drivers/dri/i965/Makefile.sources | |
parent | 2612e569e04e29500f81ed233bd86b45ef583495 (diff) |
i965: Add a NIR analysis pass for determining when a boolean resolve is needed
v2: Fix the spelling of analyze and re-arrange code for better readability
as per Connor's comments.
v3: Make the naming of things more consistent and add a pile of comments
v4: Stop trying to avoid vectors
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Connor Abbott <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/Makefile.sources')
-rw-r--r-- | src/mesa/drivers/dri/i965/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/Makefile.sources b/src/mesa/drivers/dri/i965/Makefile.sources index c69441b5885..3a3df70ce83 100644 --- a/src/mesa/drivers/dri/i965/Makefile.sources +++ b/src/mesa/drivers/dri/i965/Makefile.sources @@ -73,6 +73,8 @@ i965_FILES = \ brw_meta_util.h \ brw_misc_state.c \ brw_multisample_state.h \ + brw_nir.h \ + brw_nir_analyze_boolean_resolves.c \ brw_object_purgeable.c \ brw_packed_float.c \ brw_performance_monitor.c \ |