diff options
author | Roland Scheidegger <[email protected]> | 2009-12-19 20:25:43 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-12-19 20:25:43 +0100 |
commit | 420ff89067515a74c9625a103cadc267d5f64bd4 (patch) | |
tree | c7101e7c9012a83463d48c74a377d4f4146d4e4d /src/mesa/state_tracker/st_context.h | |
parent | 1aba413a702cad3da04cf6d686ce81dd6330f1a9 (diff) |
gallium: don't use edgeflags if the app didn't supply them
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index b7607286583..831909a3f8f 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -55,6 +55,7 @@ struct bitmap_cache; #define ST_NEW_FRAGMENT_PROGRAM 0x2 #define ST_NEW_VERTEX_PROGRAM 0x4 #define ST_NEW_FRAMEBUFFER 0x8 +#define ST_NEW_EDGEFLAGS_DATA 0x10 struct st_state_flags { @@ -120,6 +121,7 @@ struct st_context struct st_state_flags dirty; GLboolean missing_textures; + GLboolean vertdata_edgeflags; /** Mapping from VERT_RESULT_x to post-transformed vertex slot */ const GLuint *vertex_result_to_slot; |