summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno/ir3/ir3_depth.c
diff options
context:
space:
mode:
authorRob Clark <robclark@freedesktop.org>2016-03-27 13:43:45 -0400
committerRob Clark <robclark@freedesktop.org>2016-04-04 20:18:18 -0400
commit19739e4fb9024f42a8fc332e6fa94c292bb6bc16 (patch)
treebeed50c9fb531df059cd10b5bfd1652b3a9645e0 /src/gallium/drivers/freedreno/ir3/ir3_depth.c
parent70735643f4cf660dc3022f40f853a138aea738c2 (diff)
downloadexternal_mesa3d-19739e4fb9024f42a8fc332e6fa94c292bb6bc16.tar.gz
external_mesa3d-19739e4fb9024f42a8fc332e6fa94c292bb6bc16.tar.bz2
external_mesa3d-19739e4fb9024f42a8fc332e6fa94c292bb6bc16.zip
freedreno/ir3: remove ir3_instruction::category
Signed-off-by: Rob Clark <robclark@freedesktop.org>
Diffstat (limited to 'src/gallium/drivers/freedreno/ir3/ir3_depth.c')
-rw-r--r--src/gallium/drivers/freedreno/ir3/ir3_depth.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/drivers/freedreno/ir3/ir3_depth.c b/src/gallium/drivers/freedreno/ir3/ir3_depth.c
index 6d294f1a48..c3f6de965c 100644
--- a/src/gallium/drivers/freedreno/ir3/ir3_depth.c
+++ b/src/gallium/drivers/freedreno/ir3/ir3_depth.c
@@ -74,8 +74,7 @@ int ir3_delayslots(struct ir3_instruction *assigner,
if (is_flow(consumer) || is_sfu(consumer) || is_tex(consumer) ||
is_mem(consumer)) {
return 6;
- } else if ((consumer->category == 3) &&
- (is_mad(consumer->opc) || is_madsh(consumer->opc)) &&
+ } else if ((is_mad(consumer->opc) || is_madsh(consumer->opc)) &&
(n == 3)) {
/* special case, 3rd src to cat3 not required on first cycle */
return 1;