2 Copyright © 2009-2019, The AROS Development Team. All rights reserved.
6 #include <aros/debug.h>
8 #include <proto/exec.h>
10 #include "mesa3dgl_types.h"
12 /*****************************************************************************
16 GLAContext
glAGetCurrentContext(
22 Returns the currently selected GL rendering context.
27 The GL rendering context which is currently active.
35 *****************************************************************************/
37 D(bug("[MESA3DGL] %s()\n", __func__
));
39 GET_CURRENT_CONTEXT(ctx
);
41 return (GLAContext
)ctx
;