aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorMatt Turner <[email protected]>2014-08-27 18:39:35 -0700
committerMatt Turner <[email protected]>2014-08-28 19:06:45 -0700
commit2cab62a68d5a86eef8e510bac176a14d0834787a (patch)
tree194d17f149654d6ce78d6f96e0e104722941fd4d /src/mesa
parent4fcefac7531dbf2b17c0dc133ba52505486c936e (diff)
i965: Mark BRW_CONDITIONAL_R as Gen <= 5.
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/drivers/dri/i965/brw_defines.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_defines.h b/src/mesa/drivers/dri/i965/brw_defines.h
index 968aba1fb22..0ef43e916e3 100644
--- a/src/mesa/drivers/dri/i965/brw_defines.h
+++ b/src/mesa/drivers/dri/i965/brw_defines.h
@@ -731,7 +731,7 @@ enum PACKED brw_conditional_mod {
BRW_CONDITIONAL_GE = 4,
BRW_CONDITIONAL_L = 5,
BRW_CONDITIONAL_LE = 6,
- BRW_CONDITIONAL_R = 7,
+ BRW_CONDITIONAL_R = 7, /* Gen <= 5 */
BRW_CONDITIONAL_O = 8,
BRW_CONDITIONAL_U = 9,
};