From 2cab62a68d5a86eef8e510bac176a14d0834787a Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 27 Aug 2014 18:39:35 -0700 Subject: [PATCH] i965: Mark BRW_CONDITIONAL_R as Gen <= 5. --- src/mesa/drivers/dri/i965/brw_defines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }; -- 2.30.2