From b5e39405831092d8cf7943318c92b750325eb31e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Wed, 3 Aug 2011 01:13:06 +0200 Subject: [PATCH] util: fix a typo in util_format_swizzle_4f Reported by Gustaw Smolarczyk. --- src/gallium/auxiliary/util/u_format.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/auxiliary/util/u_format.c b/src/gallium/auxiliary/util/u_format.c index 3a8aeab..34922ab 100644 --- a/src/gallium/auxiliary/util/u_format.c +++ b/src/gallium/auxiliary/util/u_format.c @@ -409,7 +409,7 @@ void util_format_swizzle_4f(float *dst, const float *src, unsigned i; for (i = 0; i < 4; i++) { - if (swz[i] < UTIL_FORMAT_SWIZZLE_W) + if (swz[i] <= UTIL_FORMAT_SWIZZLE_W) dst[i] = src[swz[i]]; else if (swz[i] == UTIL_FORMAT_SWIZZLE_0) dst[i] = 0; -- 2.7.4