diff options
author | Brian Paul <[email protected]> | 2014-08-11 12:59:46 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2014-08-11 12:59:47 -0600 |
commit | f24be7340162c6a831b392d46d6637e9656e7a8a (patch) | |
tree | 05c2090ab2951c9b5d56c7d656eec06732416646 /src/mesa/main | |
parent | f5cc3fdcf1680b116612fac7c39f1bd79f5e555e (diff) |
mesa: add missing GLAPIENTRY in copyimage.c
Fixes MinGW build. Trivial.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/copyimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/copyimage.c b/src/mesa/main/copyimage.c index e1110dd7e00..dcbc83de6fb 100644 --- a/src/mesa/main/copyimage.c +++ b/src/mesa/main/copyimage.c @@ -253,7 +253,7 @@ check_region_bounds(struct gl_context *ctx, struct gl_texture_image *tex_image, return true; } -void +void GLAPIENTRY _mesa_CopyImageSubData(GLuint srcName, GLenum srcTarget, GLint srcLevel, GLint srcX, GLint srcY, GLint srcZ, GLuint dstName, GLenum dstTarget, GLint dstLevel, |