diff options
author | Kenneth Graunke <[email protected]> | 2011-06-06 11:14:15 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-06-08 14:51:11 -0700 |
commit | acf82657f4d607e4477f03752613d42f239e4bd3 (patch) | |
tree | c91f26333e27433359ca1841d1e306c801eb7fb8 /src/mesa | |
parent | 2a638076165eaa1294708a7e4518c2d72560e066 (diff) |
i965/gen7: Enable SIMD16 fragment shader dispatch.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/gen7_wm_state.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/gen7_wm_state.c b/src/mesa/drivers/dri/i965/gen7_wm_state.c index 993d5bd8465..6a64eb8a2d3 100644 --- a/src/mesa/drivers/dri/i965/gen7_wm_state.c +++ b/src/mesa/drivers/dri/i965/gen7_wm_state.c @@ -232,9 +232,13 @@ upload_ps_state(struct brw_context *brw) OUT_BATCH(0); /* scratch space base offset */ OUT_BATCH(dw4); OUT_BATCH(dw5); - /* FINISHME: need to upload the SIMD16 program */ OUT_BATCH(0); /* kernel 1 pointer */ - OUT_BATCH(0); /* kernel 2 pointer */ + if (brw->wm.prog_data->prog_offset_16) { + OUT_RELOC(brw->wm.prog_bo, I915_GEM_DOMAIN_INSTRUCTION, 0, + brw->wm.prog_data->prog_offset_16); + } else { + OUT_BATCH(0); /* kernel 2 pointer */ + } ADVANCE_BATCH(); } |