diff options
author | Jose Fonseca <[email protected]> | 2020-05-01 19:12:38 +0100 |
---|---|---|
committer | Jose Fonseca <[email protected]> | 2020-05-01 19:15:11 +0100 |
commit | f8601110e4ecec7a1578e853f694796fe50b4e94 (patch) | |
tree | d2b927e1429cb8dcb175cf0994058d567521e17b /src/mesa | |
parent | 2a05ba541401ace1417aa57fab907abb4288baa2 (diff) |
glthread: Add GLAPIENTRY to _mesa_marshal_MultiDrawArrays.
Fixes MSVC build. Trivial.
Fixes: 2840bc3065b9e991b2c5880a2ee02e2458a758c4
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/glthread_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/glthread_draw.c b/src/mesa/main/glthread_draw.c index bd53c13fd37..3ed75e470bd 100644 --- a/src/mesa/main/glthread_draw.c +++ b/src/mesa/main/glthread_draw.c @@ -332,7 +332,7 @@ multi_draw_arrays_async(struct gl_context *ctx, GLenum mode, } } -void +void GLAPIENTRY _mesa_marshal_MultiDrawArrays(GLenum mode, const GLint *first, const GLsizei *count, GLsizei draw_count) { |