diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-11-02 22:56:27 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-11-02 22:56:27 +0000 |
commit | 05267501af5288a9d380df1306e5b74dcab1ec40 (patch) | |
tree | 0e0b0a5dc17ed751af2d47e83109f1d561481616 | |
parent | 71f71c2c8ab0b8af95cddc99df5dd01e4ca6af68 (diff) |
comment about a valgrind error
-rw-r--r-- | src/mesa/main/texstore.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/texstore.c b/src/mesa/main/texstore.c index 2a34cfba5a..89563842c2 100644 --- a/src/mesa/main/texstore.c +++ b/src/mesa/main/texstore.c @@ -699,6 +699,7 @@ swizzle_copy(GLubyte *dst, GLuint dstComponents, const GLubyte *src, } break; case 1: + /* XXX investigate valgrind invalid read when running demos/texenv.c */ for (i = 0; i < count; i++) { COPY_4UBV(tmp, src); src += srcComponents; |