diff options
author | Kenneth Graunke <[email protected]> | 2014-01-06 10:51:20 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-01-06 10:52:43 -0800 |
commit | 242ca9acb4b52e331dbbadc2d1e014e69c0539ad (patch) | |
tree | 9222735aab93df8ef2320704947b6359d0249e30 /src | |
parent | 346b6abab9d0ec2d3aec6efe5a4bb03803666c2f (diff) |
i965: Delete unused INTEL_WRITE_{PART,FULL} and INTEL_READ #defines.
These are just software flag values (not hardware specific values), and
aren't used anywhere. Delete them to avoid confusion.
Signed-off-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 9d224987cc8..df32ccbcf1a 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -139,10 +139,6 @@ extern "C" { * Handles blending and (presumably) depth and stencil testing. */ -#define INTEL_WRITE_PART 0x1 -#define INTEL_WRITE_FULL 0x2 -#define INTEL_READ 0x4 - #define BRW_MAX_CURBE (32*16) struct brw_context; |