From 7e152b83cbc3af028175a52450c60101cb16acf8 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Mon, 18 Jul 2005 20:07:19 +0000 Subject: s/clippping/clipping/ --- src/mesa/swrast/s_span.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/swrast') diff --git a/src/mesa/swrast/s_span.c b/src/mesa/swrast/s_span.c index aec9a99912..c5b7f858e7 100644 --- a/src/mesa/swrast/s_span.c +++ b/src/mesa/swrast/s_span.c @@ -1365,7 +1365,7 @@ _swrast_read_rgba_span( GLcontext *ctx, struct gl_renderbuffer *rb, else { GLint skip, length; if (x < 0) { - /* left edge clippping */ + /* left edge clipping */ skip = -x; length = (GLint) n - skip; if (length < 0) { @@ -1418,7 +1418,7 @@ _swrast_read_index_span( GLcontext *ctx, struct gl_renderbuffer *rb, else { GLint skip, length; if (x < 0) { - /* left edge clippping */ + /* left edge clipping */ skip = -x; length = (GLint) n - skip; if (length < 0) { -- cgit v1.2.3