diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2006-03-28 01:22:48 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2006-03-28 01:22:48 +0000 |
commit | 95174c4eb2dcd6fe687ffcddc82bf7b8bf242ebe (patch) | |
tree | 0495288288caa857ea8152fb9c9db57e3855a2b4 | |
parent | f76ff7e4a7b728258606950f182a0a9a8cce791b (diff) |
comment about byteswapping in _mesa_unpack_depth_span()
-rw-r--r-- | src/mesa/main/image.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/image.c b/src/mesa/main/image.c index ee44e37295..a82b540ed6 100644 --- a/src/mesa/main/image.c +++ b/src/mesa/main/image.c @@ -3849,6 +3849,7 @@ _mesa_unpack_depth_span( const GLcontext *ctx, GLuint n, depthValues = depthTemp; } + /* XXX we need to obey srcPacking->SwapBytes here!!! */ (void) srcPacking; switch (srcType) { |