diff options
author | Marek Olšák <[email protected]> | 2011-08-03 01:13:06 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-08-03 01:15:41 +0200 |
commit | b5e39405831092d8cf7943318c92b750325eb31e (patch) | |
tree | bb33ef90831145573779405632d50d276d1ea780 /src/gallium/auxiliary | |
parent | e0e4c2e30552e524c91b2eb98a2dabdcd4666169 (diff) |
util: fix a typo in util_format_swizzle_4f
Reported by Gustaw Smolarczyk.
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/util/u_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_format.c b/src/gallium/auxiliary/util/u_format.c index 3a8aeab5fed..34922ab18ab 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; |