summaryrefslogtreecommitdiffstats
path: root/make/stub_includes
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2004-04-29 21:50:38 +0000
committerKenneth Russel <[email protected]>2004-04-29 21:50:38 +0000
commitbe5d9ba85bad4cf845778d1bdcc4361d864a4604 (patch)
treebc0d0083211eff4c12a745eb48ec7efc8d31020f /make/stub_includes
parent595577662881914de98204d0ef43e329e365d021 (diff)
Fixed Issue 79: PBuffers on macintosh fail to glCopyTexSubImage2D
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@128 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'make/stub_includes')
-rw-r--r--make/stub_includes/macosx/window-system.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/make/stub_includes/macosx/window-system.c b/make/stub_includes/macosx/window-system.c
index 2908b07be..4b3f95649 100644
--- a/make/stub_includes/macosx/window-system.c
+++ b/make/stub_includes/macosx/window-system.c
@@ -25,9 +25,9 @@ void updateContext(void* nsContext, void* nsView);
void* updateContextRegister(void* nsContext, void* nsView);
void updateContextUnregister(void* nsContext, void* nsView, void* updater);
-void* createPBuffer(void* nsContext, int width, int height);
+void* createPBuffer(int renderTarget, int width, int height);
Bool destroyPBuffer(void* nsContext, void* pBuffer);
-int bindPBuffer(void* nsContext, void* pBuffer);
-void unbindPBuffer(void* nsContext, void* pBuffer, int pBufferTextureName);
+void setContextPBuffer(void* nsContext, void* pBuffer);
+void setContextTextureImageToPBuffer(void* nsContext, void* pBuffer, int colorBuffer);
void* getProcAddress(const char *procName);