From: Chris Forbes Date: Sun, 28 Sep 2014 04:07:37 +0000 (+1300) Subject: i965: Fix spelling of GEN7_SAMPLER_EWA_ANISOTROPIC_ALGORITHM X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d8c5c4f3e480a6edfd9b4b83c35cee07c70dd421;p=mesa.git i965: Fix spelling of GEN7_SAMPLER_EWA_ANISOTROPIC_ALGORITHM Signed-off-by: Chris Forbes --- 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) |