summaryrefslogtreecommitdiff
path: root/src/mesa/main/mipmap.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-02-11 10:59:40 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-02-11 10:59:40 -0700
commitb61b1a295b13a0ff2cf98c8d07e62147d71c08b9 (patch)
treeac65a17d8ea7e4c4294d4caabbe13ad0007032b8 /src/mesa/main/mipmap.h
parent3d0fd8a6cf294d58df2d2ec4139192416a1a4078 (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.h2
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);