diff options
author | Kenneth Graunke <[email protected]> | 2016-11-11 13:18:51 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2016-11-11 13:19:18 -0800 |
commit | 74d5d393df23b13dd03dcb11b1798910dc339753 (patch) | |
tree | 0ba070f8700ea82bbabb4f3760a5a143f6b77000 | |
parent | 3ff9f8c5328310a463d3f16f573b68aa20ab8339 (diff) |
i965: Update a comment: s/brw_state_cache/brw_program_cache/g
Tim renamed this recently - stop referring to it by the old name.
Signed-off-by: Kenneth Graunke <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 3a88e56b51e..3790b6d2c6a 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -252,8 +252,8 @@ enum brw_state_id { #define BRW_NEW_FS_PROG_DATA (1ull << BRW_CACHE_FS_PROG) /* XXX: The BRW_NEW_BLORP_BLIT_PROG_DATA dirty bit is unused (as BLORP doesn't * use the normal state upload paths), but the cache is still used. To avoid - * polluting the brw_state_cache code with special cases, we retain the dirty - * bit for now. It should eventually be removed. + * polluting the brw_program_cache code with special cases, we retain the + * dirty bit for now. It should eventually be removed. */ #define BRW_NEW_BLORP_BLIT_PROG_DATA (1ull << BRW_CACHE_BLORP_PROG) #define BRW_NEW_SF_PROG_DATA (1ull << BRW_CACHE_SF_PROG) |