add place-holder directory for the a3000 wd533c93 scsi controller implementation.
[AROS.git] / workbench / libs / mesa / mesa3dgl_glagetcurrentcontext.c
blob0fe46f176de16eb7175fa6c8e495c22247e81ca4
1 /*
2 Copyright © 2009-2019, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include <proto/exec.h>
10 #include "mesa3dgl_types.h"
12 /*****************************************************************************
14 NAME */
16 GLAContext glAGetCurrentContext(
18 /* SYNOPSIS */
21 /* FUNCTION
22 Returns the currently selected GL rendering context.
24 INPUTS
26 RESULT
27 The GL rendering context which is currently active.
29 BUGS
31 INTERNALS
33 HISTORY
35 *****************************************************************************/
37 D(bug("[MESA3DGL] %s()\n", __func__));
39 GET_CURRENT_CONTEXT(ctx);
41 return (GLAContext)ctx;