aboutsummaryrefslogtreecommitdiffstats
path: root/C2J/manual/glx-disp-var.hc
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2001-11-11 21:30:13 +0000
committerKenneth Russel <[email protected]>2001-11-11 21:30:13 +0000
commitf610ac01f50165b2ea6bc4a81d02abf2e222d876 (patch)
tree2b54144d82803e6665a371b6eeeae6812a16e3ac /C2J/manual/glx-disp-var.hc
parent3b0e7fd364c6d61b97f4f2daf405b30e662fddc7 (diff)
Support for NVidia AllocateMemoryNV extension and fixed problem with extensions not being loaded
Diffstat (limited to 'C2J/manual/glx-disp-var.hc')
-rw-r--r--C2J/manual/glx-disp-var.hc3
1 files changed, 3 insertions, 0 deletions
diff --git a/C2J/manual/glx-disp-var.hc b/C2J/manual/glx-disp-var.hc
index c24a839..99cc0a3 100644
--- a/C2J/manual/glx-disp-var.hc
+++ b/C2J/manual/glx-disp-var.hc
@@ -13,3 +13,6 @@ int (CALLBACK * disp__glXGetConfig) (Display *, XVisualInfo *, int, int *) = NUL
Bool (CALLBACK * disp__glXMakeCurrent) (Display *, GLXDrawable, GLXContext) = NULL;
void (CALLBACK * disp__glXSwapBuffers) (Display *, GLXDrawable) = NULL;
+/* NVidia support */
+void* (CALLBACK * disp__glXAllocateMemoryNV)(int, float, float, float) = NULL;
+void (CALLBACK * disp__glXFreeMemoryNV) (void*) = NULL;