diff options
author | Timothy Arceri <[email protected]> | 2013-08-26 17:07:04 +1000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-09-04 07:47:48 -0600 |
commit | 6faf7052a2dcf065ff2e3452640924962ee8fcad (patch) | |
tree | 9647fa1dece8d910d922ca515bd9e9f51ec90b70 /src/mesa/main/dlist.h | |
parent | 97f9f11ec48383a781d2e1671df9a55d39482fcd (diff) |
mesa: make _mesa_lookup_list() non-static
Signed-off-by: Timothy Arceri <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/dlist.h')
-rw-r--r-- | src/mesa/main/dlist.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/main/dlist.h b/src/mesa/main/dlist.h index cd0b5235be3..7726e77d84a 100644 --- a/src/mesa/main/dlist.h +++ b/src/mesa/main/dlist.h @@ -53,6 +53,8 @@ _mesa_CallLists( GLsizei n, GLenum type, const GLvoid *lists ); void GLAPIENTRY _mesa_ListBase(GLuint base); +extern struct gl_display_list * +_mesa_lookup_list(struct gl_context *ctx, GLuint list); extern void _mesa_compile_error( struct gl_context *ctx, GLenum error, const char *s ); |