summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_context.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h
index b0f699f5d10..a671ce16861 100644
--- a/src/mesa/drivers/dri/i965/brw_context.h
+++ b/src/mesa/drivers/dri/i965/brw_context.h
@@ -248,7 +248,7 @@ struct brw_state_flags {
*
* Now almost all of that state is just streamed out on demand, but the
* flags for those state blobs updating have stayed in the same bitfield.
- * brw_state_cache.c still flags CACHE_NEW_*_PROG.
+ * brw_state_cache.c still flags BRW_NEW_*_PROG_DATA.
*/
GLuint cache;
};
@@ -777,13 +777,13 @@ enum shader_time_shader_type {
/* Flags for brw->state.cache.
*/
-#define CACHE_NEW_WM_PROG (1 << BRW_CACHE_FS_PROG)
-#define CACHE_NEW_BLORP_BLIT_PROG (1 << BRW_CACHE_BLORP_BLIT_PROG)
-#define CACHE_NEW_SF_PROG (1 << BRW_CACHE_SF_PROG)
-#define CACHE_NEW_VS_PROG (1 << BRW_CACHE_VS_PROG)
-#define CACHE_NEW_FF_GS_PROG (1 << BRW_CACHE_FF_GS_PROG)
-#define CACHE_NEW_GS_PROG (1 << BRW_CACHE_GS_PROG)
-#define CACHE_NEW_CLIP_PROG (1 << BRW_CACHE_CLIP_PROG)
+#define BRW_NEW_FS_PROG_DATA (1 << BRW_CACHE_FS_PROG)
+#define BRW_NEW_BLORP_BLIT_PROG_DATA (1 << BRW_CACHE_BLORP_BLIT_PROG)
+#define BRW_NEW_SF_PROG_DATA (1 << BRW_CACHE_SF_PROG)
+#define BRW_NEW_VS_PROG_DATA (1 << BRW_CACHE_VS_PROG)
+#define BRW_NEW_FF_GS_PROG_DATA (1 << BRW_CACHE_FF_GS_PROG)
+#define BRW_NEW_GS_PROG_DATA (1 << BRW_CACHE_GS_PROG)
+#define BRW_NEW_CLIP_PROG_DATA (1 << BRW_CACHE_CLIP_PROG)
struct brw_vertex_buffer {
/** Buffer object containing the uploaded vertex data */