summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/xorg/glcore.c
blob: a0199117c672abfb7718092d8ca9dd7c01cd15d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

#define _NEED_GL_CORE_IF
#include <GL/xmesa.h>
#include <GL/internal/glcore.h>
#include "xmesaP.h"

PUBLIC
__GLcoreModule GL_Core = {
    XMesaCreateVisual,
    XMesaDestroyVisual,

    XMesaCreateWindowBuffer,
    XMesaCreatePixmapBuffer,
    XMesaDestroyBuffer,
    XMesaSwapBuffers,
    XMesaResizeBuffers,

    XMesaCreateContext,
    XMesaDestroyContext,
    XMesaCopyContext,
    XMesaMakeCurrent2,
    XMesaForceCurrent,
    XMesaLoseCurrent
};