diff options
author | Brian Paul <[email protected]> | 1999-10-31 08:34:47 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-10-31 08:34:47 +0000 |
commit | 03d96a0ce28bebe5afd6e5a3cbc460b81ee4f4f7 (patch) | |
tree | 0a717eeacdd382315afa1580e1b735999ebec6ac | |
parent | 38136ec3ddef8f1e7f7c96b69efc33bf2d7706cc (diff) |
fixed a typo in a comment
-rw-r--r-- | src/mesa/main/dlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index 18fd4f92167..e9706373903 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -1,4 +1,4 @@ -/* $Id: dlist.c,v 1.11 1999/10/19 18:37:03 keithw Exp $ */ +/* $Id: dlist.c,v 1.12 1999/10/31 08:34:47 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -2129,7 +2129,7 @@ static void save_TexImage1D( GLcontext *ctx, GLenum target, n[7].e = type; n[8].data = teximage; if (teximage) { - /* this prevents gl_TexImage2D() from freeing the image */ + /* this prevents gl_TexImage1D() from freeing the image */ teximage->RefCount = 1; } } |