summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_sf.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2014-08-24 00:03:37 -0700
committerMatt Turner <mattst88@gmail.com>2014-09-25 11:02:36 -0700
commit1fce6fcac18f2daacaacebff5f5249c2a4f8cc79 (patch)
tree20640cd350578810a7ead2846e9b32a2fda1552b /src/mesa/drivers/dri/i965/brw_sf.c
parentb5466707d6632e7dd019b36ced8da2b4ec7d5297 (diff)
downloadexternal_mesa3d-1fce6fcac18f2daacaacebff5f5249c2a4f8cc79.zip
external_mesa3d-1fce6fcac18f2daacaacebff5f5249c2a4f8cc79.tar.gz
external_mesa3d-1fce6fcac18f2daacaacebff5f5249c2a4f8cc79.tar.bz2
i965/sf: Disable instruction compaction.
Currently a no-op, since instruction compaction isn't implemented for the generations that have a programmable strips-and-fans unit. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_sf.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_sf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_sf.c b/src/mesa/drivers/dri/i965/brw_sf.c
index dc6135e..ac9506a 100644
--- a/src/mesa/drivers/dri/i965/brw_sf.c
+++ b/src/mesa/drivers/dri/i965/brw_sf.c
@@ -108,7 +108,10 @@ static void compile_sf_prog( struct brw_context *brw,
unreachable("not reached");
}
- brw_compact_instructions(&c.func, 0, 0, NULL);
+ /* FINISHME: SF programs use calculated jumps (i.e., JMPI with a register
+ * source). Compacting would be difficult.
+ */
+ /* brw_compact_instructions(&c.func, 0, 0, NULL); */
/* get the program
*/