From: Brian Paul Date: Mon, 18 Jul 2005 20:07:19 +0000 (+0000) Subject: s/clippping/clipping/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7e152b83cbc3af028175a52450c60101cb16acf8;p=mesa.git s/clippping/clipping/ --- diff --git a/src/mesa/swrast/s_span.c b/src/mesa/swrast/s_span.c index aec9a999127..c5b7f858e73 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) {