summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2004-03-15 18:44:48 +0000
committerKenneth Russel <[email protected]>2004-03-15 18:44:48 +0000
commitedfa42f91c09df70073691db069db4295805f827 (patch)
tree30026abb429408f23d6a91e0d1a06c81c686bea9 /src
parente086ae6da65a5cc9e50ff8d1f72eb533d4f76d6d (diff)
Removed debugging printfs
git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@89 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src')
-rw-r--r--src/native/jogl/MacOSXWindowSystemInterface.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/native/jogl/MacOSXWindowSystemInterface.m b/src/native/jogl/MacOSXWindowSystemInterface.m
index 85ab9253e..3d2269a31 100644
--- a/src/native/jogl/MacOSXWindowSystemInterface.m
+++ b/src/native/jogl/MacOSXWindowSystemInterface.m
@@ -18,7 +18,7 @@ NSAutoreleasePool* gAutoreleasePool = NULL;
void* createContext( JNIEnv* env, jobject glCapabilities, void* shareContext, void* view)
{
- fprintf( stderr, "Creating context \n");
+ // fprintf( stderr, "Creating context \n");
jclass clazz = (*env)->GetObjectClass( env, glCapabilities );
@@ -51,7 +51,7 @@ void* createContext( JNIEnv* env, jobject glCapabilities, void* shareContext, vo
jint depthSize = (*env)->GetIntField( env, glCapabilities, depthSizeField );
jint stencilSize = (*env)->GetIntField( env, glCapabilities, stencilSizeField );
- fprintf(stderr, "Color %d, alpha %d, depth %d, stencil %d, accum %d", colorSize, alphaSize, depthSize, stencilSize, accumSize );
+ // fprintf(stderr, "Color %d, alpha %d, depth %d, stencil %d, accum %d", colorSize, alphaSize, depthSize, stencilSize, accumSize );
//fprintf(stderr, "createContext shareContext=%p view=%p\n", shareContext, view);
@@ -227,7 +227,7 @@ void* createPBuffer(void* context, int width, int height)
Bool destroyPBuffer(void* context, void* buffer)
{
-fprintf(stderr, "destroyPBuffer context=%p, buffer=%p\n", context, buffer);
+//fprintf(stderr, "destroyPBuffer context=%p, buffer=%p\n", context, buffer);
#ifdef AVAILABLE_MAC_OS_X_VERSION_10_3_AND_LATER)
NSOpenGLContext *nsContext = (NSOpenGLContext*)context;
NSOpenGLPixelBuffer *pBuffer = (NSOpenGLPixelBuffer*)buffer;
@@ -335,4 +335,4 @@ void* getProcAddress(const char *procname)
}
return NULL;
-} \ No newline at end of file
+}