-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoverrides.h
More file actions
71 lines (66 loc) · 1.72 KB
/
overrides.h
File metadata and controls
71 lines (66 loc) · 1.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#ifndef _OVERRIDES_H_
#define _OVERRIDES_H_
#include <stdlib.h>
#include "init.h"
#include "id.h"
#include "single_screen.h"
#include <sys/types.h>
#include <signal.h>
#include <unistd.h>
#include <math.h>
#define OVERRIDE_BASE 8000
void load_library(void);
void GLOMPglFrustum();
void GLOMPglGenTextures();
void GLOMPglBindTexture();
void GLOMPglXSwapBuffers();
void GLOMPglGenLists();
void GLOMPglCallList();
void GLOMPglGetString();
void GLOMPglCallLists();
void GLOMPglBindTextureEXT();
void GLOMPglGenTexturesEXT();
void GLOMPglGenQueries();
void GLOMPglGenBuffers();
void GLOMPglBindBuffer();
void GLOMPglGenProgramsARB();
void GLOMPglBindProgramARB();
void GLOMPglGenBuffersARB();
void GLOMPglBindBufferARB();
void GLOMPglGenQueriesARB();
void GLOMPglGenFencesNV();
void GLOMPglGenProgramsNV();
void GLOMPglBindProgramNV();
void GLOMPglGenOcclusionQueriesNV();
void GLOMPglGenRenderbuffersEXT();
void GLOMPglBindRenderbufferEXT();
void GLOMPglGenFramebuffersEXT();
void GLOMPglBindFramebufferEXT();
void GLOMPglDeleteTextures();
void GLOMPglFlush();
void GLOMPglFinish();
void GLOMPglDeleteQueries();
void GLOMPglDeleteBuffers();
void GLOMPglDeleteProgramARB();
void GLOMPglDeleteProgramsARB();
void GLOMPglDeleteBuffersARB();
void GLOMPglDeleteQueriesARB();
void GLOMPglDeleteTexturesEXT();
void GLOMPglDeleteFencesNV();
void GLOMPglDeleteProgramsNV();
void GLOMPglDeleteOcclusionQueriesNV();
void GLOMPglDeleteRenderbuffersEXT();
void GLOMPglDeleteFramebuffersEXT();
void GLOMPXCreateWindow();
void GLOMPglViewport();
void GLOMPglOrtho();
void GLOMPglNewList();
void GLOMPglMap1f();
void GLOMPglMap1d();
void GLOMPglMap2f();
void GLOMPglMap2d();
void GLOMPdraw_array();
void GLOMPquit();
void GLOMPglLoadMatrixf();
void GLOMPglLoadMatrixd();
#endif