[Mesa-dev] [Mesa-stable] [PATCH] i915: Fix wpos_tex vs. -1 comparison

Ville Syrjälä ville.syrjala at linux.intel.com
Wed Jun 14 15:40:04 UTC 2017


On Wed, Jun 14, 2017 at 11:45:17AM +0100, Emil Velikov wrote:
> Hi Ville
> 
> On 5 June 2017 at 15:52,  <ville.syrjala at linux.intel.com> wrote:
> > From: Ville Syrjälä <ville.syrjala at linux.intel.com>
> >
> > wpos_tex used to be a GLuint so assinging -1 to it and
> > later comparing with -1 worked correctly, but commit
> > c349031c27b7 ("i915: Fix texcoord vs. varying collision in
> > fragment programs") changed wpos_tex to uint8_t and hence
> > broke the comparison. To fix this define a more explicit
> > invalid value for wpos_tex.
> >
> s/assinging/assigning/

Fixed.

> 
> > gcc warns us:
> > i915_fragprog.c:1255:57: warning: comparison is always true due to limited range of data type [-Wtype-limits]
> >     if (inputsRead & VARYING_BITS_TEX_ANY || p->wpos_tex != -1) {
> >                                                          ^
> >
> > And clang says:
> > i915_fragprog.c:1255:57: warning: comparison of constant -1 with expression of type 'uint8_t' (aka 'unsigned char') is always true [-Wtautological-constant-out-of-range-compare]
> >    if (inputsRead & VARYING_BITS_TEX_ANY || p->wpos_tex != -1) {
> >                                             ~~~~~~~~~~~ ^  ~~
> >
> > Cc: Chih-Wei Huang <cwhuang at android-x86.org>
> > Cc: Eric Anholt <eric at anholt.net>
> > Cc: Ian Romanick <ian.d.romanick at intel.com>
> > Cc: mesa-stable at lists.freedesktop.org
> > Fixes: c349031c27b7 ("i915: Fix texcoord vs. varying collision in fragment programs")
> > Signed-off-by: Ville Syrjälä <ville.syrjala at linux.intel.com>
> Reviewed-by: Emil Velikov <emil.velikov at collabora.com>

Thanks. Pushed to master.

-- 
Ville Syrjälä
Intel OTC


More information about the mesa-dev mailing list