aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
diff options
context:
space:
mode:
authorKenneth Graunke <[email protected]>2014-08-04 14:26:26 -0700
committerKenneth Graunke <[email protected]>2014-08-08 00:51:44 -0700
commite64dbd050d6d5b4ea502ee2fc727e12135833771 (patch)
treec8d5e9d09eab2c4ba482d2f673830796215ea18a /src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
parente7a7b3317c5992d230cf55752ef0b6bc25928ff9 (diff)
i965/eu: Merge brw_CONT and gen6_CONT.
The only difference is setting PopCount on Gen4-5. Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_vec4_generator.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_vec4_generator.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp b/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
index c328f349bc9..2129007f988 100644
--- a/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
+++ b/src/mesa/drivers/dri/i965/brw_vec4_generator.cpp
@@ -1085,11 +1085,7 @@ vec4_generator::generate_vec4_instruction(vec4_instruction *instruction,
brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
break;
case BRW_OPCODE_CONTINUE:
- /* FINISHME: We need to write the loop instruction support still. */
- if (brw->gen >= 6)
- gen6_CONT(p);
- else
- brw_CONT(p);
+ brw_CONT(p);
brw_set_default_predicate_control(p, BRW_PREDICATE_NONE);
break;