Removing the use of private CoreGraphics APIs to draw shadows, and replacing with...
[ITKit.git] / ITWindowEffect.m
old mode 100755 (executable)
new mode 100644 (file)
index 7111d38..a99f54a
@@ -1,12 +1,14 @@
 #import "ITWindowEffect.h"
 #import "ITTransientStatusWindow.h"
-
+#import <OpenGL/gl.h>
+#import <OpenGL/glu.h>
+#import <OpenGL/glext.h>
 
 @implementation ITWindowEffect
 
 + (NSArray *)effectClasses
 {
-    NSArray *classes = [NSArray arrayWithObjects:
+    NSMutableArray *classes = [[NSArray arrayWithObjects:
         NSClassFromString(@"ITCutWindowEffect"),
         NSClassFromString(@"ITDissolveWindowEffect"),
         NSClassFromString(@"ITSlideHorizontallyWindowEffect"),
         NSClassFromString(@"ITPivotWindowEffect"),
         NSClassFromString(@"ITZoomWindowEffect"),
         NSClassFromString(@"ITSpinWindowEffect"),
-        nil];
-        
-    return classes;
+        NSClassFromString(@"ITSpinAndZoomWindowEffect"),
+        nil] mutableCopy];
+       
+       long version;
+       if ((Gestalt(gestaltSystemVersion, &version) == noErr) && (version >= 4160) && (version < 4166)) {
+               NSOpenGLView *view = [[NSOpenGLView alloc] initWithFrame:NSMakeRect(0, 0, 1, 1) pixelFormat:[NSOpenGLView defaultPixelFormat]];
+               if ([view openGLContext]) {
+                       NSString *string = [NSString stringWithCString:glGetString(GL_EXTENSIONS)];
+                       NSRange result = [string rangeOfString:@"ARB_fragment_program"];
+                       if (result.location != NSNotFound) {
+                               [classes addObject:NSClassFromString(@"ITCoreImageWindowEffect")];
+                       }
+               }
+               [view release];
+       }
+       
+    return [classes autorelease];
 }
 
 - (id)initWithWindow:(NSWindow *)window