diff options
author | Chris Forbes <[email protected]> | 2014-09-28 17:07:37 +1300 |
---|---|---|
committer | Chris Forbes <[email protected]> | 2014-10-01 18:37:06 +1300 |
commit | d8c5c4f3e480a6edfd9b4b83c35cee07c70dd421 (patch) | |
tree | f96c7c0e7c4c45a6bba9669f3e65881bf1e2d6fa | |
parent | 6a238ac0b7436c26cc236740d68cdc3eab3aea89 (diff) |
i965: Fix spelling of GEN7_SAMPLER_EWA_ANISOTROPIC_ALGORITHM
Signed-off-by: Chris Forbes <[email protected]>
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_defines.h | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_sampler_state.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_defines.h b/src/mesa/drivers/dri/i965/brw_defines.h index 2faebe85a0c..94d146c5b36 100644 --- a/src/mesa/drivers/dri/i965/brw_defines.h +++ b/src/mesa/drivers/dri/i965/brw_defines.h @@ -640,7 +640,7 @@ #define GEN7_SAMPLER_LOD_BIAS_MASK INTEL_MASK(13, 1) #define GEN7_SAMPLER_LOD_BIAS_SHIFT 1 -#define GEN7_SAMPLER_EWA_ANISOTROPIC_ALGORIHTM (1 << 0) +#define GEN7_SAMPLER_EWA_ANISOTROPIC_ALGORITHM (1 << 0) /* SAMPLER_STATE DW1 */ #define GEN4_SAMPLER_MIN_LOD_MASK INTEL_MASK(31, 22) diff --git a/src/mesa/drivers/dri/i965/brw_sampler_state.c b/src/mesa/drivers/dri/i965/brw_sampler_state.c index 544aa57b6d1..5855af6d2bf 100644 --- a/src/mesa/drivers/dri/i965/brw_sampler_state.c +++ b/src/mesa/drivers/dri/i965/brw_sampler_state.c @@ -115,7 +115,7 @@ brw_emit_sampler_state(struct brw_context *brw, ss[0] |= SET_FIELD(lod_bias & 0x1fff, GEN7_SAMPLER_LOD_BIAS); if (min_filter == BRW_MAPFILTER_ANISOTROPIC) - ss[0] |= GEN7_SAMPLER_EWA_ANISOTROPIC_ALGORIHTM; + ss[0] |= GEN7_SAMPLER_EWA_ANISOTROPIC_ALGORITHM; ss[1] = SET_FIELD(min_lod, GEN7_SAMPLER_MIN_LOD) | SET_FIELD(max_lod, GEN7_SAMPLER_MAX_LOD) | |