Browse Source

i965: Separate the BRW_NEW_(VS|WM)_CONSTBUF dirty bits.

These were incorrectly defined to the same value - likely due to a cut
and paste error.  Found by inspection.
tags/android-x86-2.2-r2
Kenneth Graunke 14 years ago
parent
commit
58b7e37722
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/mesa/drivers/dri/i965/brw_context.h

+ 1
- 1
src/mesa/drivers/dri/i965/brw_context.h View File

@@ -145,7 +145,7 @@ struct brw_context;
#define BRW_NEW_NR_VS_SURFACES 0x80000
#define BRW_NEW_INDEX_BUFFER 0x100000
#define BRW_NEW_VS_CONSTBUF 0x200000
#define BRW_NEW_WM_CONSTBUF 0x200000
#define BRW_NEW_WM_CONSTBUF 0x400000

struct brw_state_flags {
/** State update flags signalled by mesa internals */

Loading…
Cancel
Save