summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mesa/swrast/s_span.c4
1 files changed, 2 insertions, 2 deletions
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) {