diff options
Diffstat (limited to 'src/intel/compiler/brw_fs.h')
-rw-r--r-- | src/intel/compiler/brw_fs.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/intel/compiler/brw_fs.h b/src/intel/compiler/brw_fs.h index 8b71f8c5b9a..8f543e1ec88 100644 --- a/src/intel/compiler/brw_fs.h +++ b/src/intel/compiler/brw_fs.h @@ -343,12 +343,9 @@ public: const struct brw_vue_map *input_vue_map; - BRW_ANALYSIS(live_analysis, brw::fs_live_variables, - backend_shader *) live_analysis; - BRW_ANALYSIS(regpressure_analysis, brw::register_pressure, - fs_visitor *) regpressure_analysis; - BRW_ANALYSIS(performance_analysis, brw::performance, - fs_visitor *) performance_analysis; + brw_analysis<brw::fs_live_variables, backend_shader> live_analysis; + brw_analysis<brw::register_pressure, fs_visitor> regpressure_analysis; + brw_analysis<brw::performance, fs_visitor> performance_analysis; /** Number of uniform variable components visited. */ unsigned uniforms; |