From f002176d5d3b982787e8109a419de929fd77a2b7 Mon Sep 17 00:00:00 2001 From: Jordan Justen Date: Sat, 24 Jan 2015 21:35:54 -0800 Subject: i965/cs: Add BRW_NEW_CS_PROG_DATA and BRW_CACHE_CS_PROG MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jordan Justen Reviewed-by: Kristian Høgsberg Reviewed-by: Kenneth Graunke --- src/mesa/drivers/dri/i965/brw_context.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/mesa/drivers/dri/i965/brw_context.h') diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index bd253efb3e2..f131c7003ff 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -164,6 +164,7 @@ enum brw_cache_id { BRW_CACHE_FF_GS_PROG, BRW_CACHE_GS_PROG, BRW_CACHE_CLIP_PROG, + BRW_CACHE_CS_PROG, BRW_MAX_CACHE }; @@ -245,6 +246,7 @@ enum brw_state_id { #define BRW_NEW_FF_GS_PROG_DATA (1ull << BRW_CACHE_FF_GS_PROG) #define BRW_NEW_GS_PROG_DATA (1ull << BRW_CACHE_GS_PROG) #define BRW_NEW_CLIP_PROG_DATA (1ull << BRW_CACHE_CLIP_PROG) +#define BRW_NEW_CS_PROG_DATA (1ull << BRW_CACHE_CS_PROG) #define BRW_NEW_URB_FENCE (1ull << BRW_STATE_URB_FENCE) #define BRW_NEW_FRAGMENT_PROGRAM (1ull << BRW_STATE_FRAGMENT_PROGRAM) #define BRW_NEW_GEOMETRY_PROGRAM (1ull << BRW_STATE_GEOMETRY_PROGRAM) -- cgit v1.2.3