diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-02-11 10:59:40 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-02-11 10:59:40 -0700 |
commit | b61b1a295b13a0ff2cf98c8d07e62147d71c08b9 (patch) | |
tree | ac65a17d8ea7e4c4294d4caabbe13ad0007032b8 /src/mesa/main/mipmap.h | |
parent | 3d0fd8a6cf294d58df2d2ec4139192416a1a4078 (diff) |
gallium: take pitch/stride into account in mipmap generation
Diffstat (limited to 'src/mesa/main/mipmap.h')
-rw-r--r-- | src/mesa/main/mipmap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/mipmap.h b/src/mesa/main/mipmap.h index b6491f5507..44ecdddb27 100644 --- a/src/mesa/main/mipmap.h +++ b/src/mesa/main/mipmap.h @@ -34,8 +34,10 @@ _mesa_generate_mipmap_level(GLenum target, GLenum datatype, GLuint comps, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, + GLint srcRowStride, const GLubyte *srcData, GLint dstWidth, GLint dstHeight, GLint dstDepth, + GLint dstRowStride, GLubyte *dstData); |