mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 17:30:20 +01:00
i965/fs: Add a do_rep_send flag to run_fs
Previously, we were pulling it from brw->do_rep_send Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Chris Forbes <chrisf@ijw.co.nz>
This commit is contained in:
parent
1b0f6ffa15
commit
4af62c0f5c
2 changed files with 6 additions and 5 deletions
|
|
@ -3837,7 +3837,7 @@ fs_visitor::run_vs()
|
|||
}
|
||||
|
||||
bool
|
||||
fs_visitor::run_fs()
|
||||
fs_visitor::run_fs(bool do_rep_send)
|
||||
{
|
||||
brw_wm_prog_data *wm_prog_data = (brw_wm_prog_data *) this->prog_data;
|
||||
brw_wm_prog_key *wm_key = (brw_wm_prog_key *) this->key;
|
||||
|
|
@ -3855,7 +3855,8 @@ fs_visitor::run_fs()
|
|||
|
||||
if (0) {
|
||||
emit_dummy_fs();
|
||||
} else if (brw->use_rep_send && dispatch_width == 16) {
|
||||
} else if (do_rep_send) {
|
||||
assert(dispatch_width == 16);
|
||||
emit_repclear_shader();
|
||||
} else {
|
||||
if (shader_time_index >= 0)
|
||||
|
|
@ -4007,7 +4008,7 @@ brw_wm_fs_emit(struct brw_context *brw,
|
|||
*/
|
||||
fs_visitor v(brw, mem_ctx, MESA_SHADER_FRAGMENT, key, &prog_data->base,
|
||||
prog, &fp->Base, 8, st_index8);
|
||||
if (!v.run_fs()) {
|
||||
if (!v.run_fs(false /* do_rep_send */)) {
|
||||
if (prog) {
|
||||
prog->LinkStatus = false;
|
||||
ralloc_strcat(&prog->InfoLog, v.fail_msg);
|
||||
|
|
@ -4026,7 +4027,7 @@ brw_wm_fs_emit(struct brw_context *brw,
|
|||
if (!v.simd16_unsupported) {
|
||||
/* Try a SIMD16 compile */
|
||||
v2.import_uniforms(&v);
|
||||
if (!v2.run_fs()) {
|
||||
if (!v2.run_fs(brw->use_rep_send)) {
|
||||
perf_debug("SIMD16 shader failed to compile: %s", v2.fail_msg);
|
||||
} else {
|
||||
simd16_cfg = v2.cfg;
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ public:
|
|||
uint32_t const_offset);
|
||||
void DEP_RESOLVE_MOV(const brw::fs_builder &bld, int grf);
|
||||
|
||||
bool run_fs();
|
||||
bool run_fs(bool do_rep_send);
|
||||
bool run_vs();
|
||||
bool run_cs();
|
||||
void optimize();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue