summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-04-28 09:09:41 -0600
committerBrian Paul <brianp@vmware.com>2009-04-28 09:09:41 -0600
commitd2b8c41b7a70c1f5d6597101ac7acd36052d89b6 (patch)
treeb38165bfce56c78e34e639a71e6452dc0fa3dbdc
parentbfd6bb31a6bc162413cecd23b69389fa930cbf56 (diff)
downloadmesa-d2b8c41b7a70c1f5d6597101ac7acd36052d89b6.tar.gz
swrast: add missing break in clamp_rect_coord_linear()
See bug 21461. (cherry picked from master, commit dcf571aff9de1a4298c4d2c4148d84cdc4daf02e)
-rw-r--r--src/mesa/swrast/s_texfilter.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/swrast/s_texfilter.c b/src/mesa/swrast/s_texfilter.c
index a095b255ab5..fce0bcf0caf 100644
--- a/src/mesa/swrast/s_texfilter.c
+++ b/src/mesa/swrast/s_texfilter.c
@@ -2061,6 +2061,7 @@ clamp_rect_coord_linear(GLenum wrapMode, GLfloat coord, GLint max,
fcol -= 0.5F;
i0 = IFLOOR(fcol);
i1 = i0 + 1;
+ break;
default:
_mesa_problem(NULL, "bad wrapMode in clamp_rect_coord_linear");
i0 = i1 = 0;