mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-16 14:08:07 +02:00
glapi defines an interface that is used by DRI drivers. It must not be changed in an ABI incompatible way. This commit moves all functions/variables belong to the interface to glapi.h. Instead of including u_current.h from glapi.h, u_current.h now includes glapi.h.
7 lines
93 B
C
7 lines
93 B
C
#include "glapi/glapi.h"
|
|
|
|
unsigned long
|
|
_glthread_GetID(void)
|
|
{
|
|
return u_thread_self();
|
|
}
|