disable debug
[AROS.git] / workbench / libs / mesa / src / aros / mesa3dgl / mesa3dgl_glagetcurrentcontext.c
blob19710d5fd9704cb3208fce148d90e534abcb2f59
1 /*
2 Copyright 2009-2015, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <proto/exec.h>
8 #include "mesa3dgl_types.h"
10 /*****************************************************************************
12 NAME */
14 GLAContext glAGetCurrentContext(
16 /* SYNOPSIS */
19 /* FUNCTION
20 Returns the currently selected GL rendering context.
22 INPUTS
24 RESULT
25 The GL rendering context which is currently active.
27 BUGS
29 INTERNALS
31 HISTORY
33 *****************************************************************************/
35 GET_CURRENT_CONTEXT(ctx);
37 return (GLAContext)ctx;