diff options
author | Brian <[email protected]> | 2008-02-11 09:43:30 -0700 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-09-21 22:13:54 -0700 |
commit | 74c64fa748c833a9688d3a141a7807686701e24f (patch) | |
tree | 84098cbb1a002e1a2f228af3d3a6fb25745325c7 /src/mesa/main/mipmap.h | |
parent | e93243f8b7d43695654a36334c8cc5cea140d23c (diff) |
code refactoring, new next_mipmap_level_size() function
(cherry picked from commit c22d9152e33792ea58426c53bc9b96bf552b0b44)
Diffstat (limited to 'src/mesa/main/mipmap.h')
-rw-r--r-- | src/mesa/main/mipmap.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mesa/main/mipmap.h b/src/mesa/main/mipmap.h index b6491f55073..22094c34372 100644 --- a/src/mesa/main/mipmap.h +++ b/src/mesa/main/mipmap.h @@ -35,8 +35,10 @@ _mesa_generate_mipmap_level(GLenum target, GLint border, GLint srcWidth, GLint srcHeight, GLint srcDepth, const GLubyte *srcData, + GLint srcRowStride, GLint dstWidth, GLint dstHeight, GLint dstDepth, - GLubyte *dstData); + GLubyte *dstData, + GLint dstRowStride); extern void |