1 /**************************************************************************
3 * Copyright 2011 VMware, Inc.
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 **************************************************************************/
28 * Minimal Cocoa integration.
31 * - http://developer.apple.com/library/mac/#samplecode/CocoaGL/Introduction/Intro.html
32 * - http://developer.apple.com/library/mac/#samplecode/Cocoa_With_Carbon_or_CPP/Introduction/Intro.html
33 * - http://developer.apple.com/library/mac/#samplecode/glut/Introduction/Intro.html
34 * - http://developer.apple.com/library/mac/#samplecode/GLEssentials/Introduction/Intro.html
35 * - http://www.glfw.org/
42 #include <Cocoa/Cocoa.h>
50 NSAutoreleasePool *autoreleasePool = nil;
53 class CocoaVisual : public Visual
56 NSOpenGLPixelFormat *pixelFormat;
58 CocoaVisual(NSOpenGLPixelFormat *pf) :
63 [pixelFormat release];
68 class CocoaDrawable : public Drawable
72 NSOpenGLContext *currentContext;
74 CocoaDrawable(const Visual *vis, int w, int h) :
78 NSOpenGLPixelFormat *pixelFormat = static_cast<const CocoaVisual *>(visual)->pixelFormat;
80 NSRect winRect = NSMakeRect(0, 0, w, h);
82 window = [[NSWindow alloc]
83 initWithContentRect:winRect
84 styleMask:NSTitledWindowMask |
85 NSClosableWindowMask |
86 NSMiniaturizableWindowMask
87 backing:NSBackingStoreRetained
89 assert(window != nil);
91 NSOpenGLView *view = [[NSOpenGLView alloc]
93 pixelFormat:pixelFormat];
96 [window setContentView:view];
97 [window setTitle:@"glretrace"];
106 resize(int w, int h) {
107 if (w == width && h == height) {
111 [window setContentSize:NSMakeSize(w, h)];
113 if (currentContext != nil) {
114 [currentContext update];
115 [window makeKeyAndOrderFront:nil];
116 [currentContext setView:[window contentView]];
117 [currentContext makeCurrentContext];
120 Drawable::resize(w, h);
133 void swapBuffers(void) {
134 if (currentContext != nil) {
135 [currentContext flushBuffer];
141 class CocoaContext : public Context
144 NSOpenGLContext *context;
146 CocoaContext(const Visual *vis, Profile prof, NSOpenGLContext *ctx) :
159 [NSApplication sharedApplication];
161 autoreleasePool = [[NSAutoreleasePool alloc] init];
163 [NSApp finishLaunching];
169 [autoreleasePool release];
174 createVisual(bool doubleBuffer, Profile profile) {
175 NSOpenGLPixelFormatAttribute single_attribs[] = {
176 NSOpenGLPFAAlphaSize, (NSOpenGLPixelFormatAttribute)1,
177 NSOpenGLPFAColorSize, (NSOpenGLPixelFormatAttribute)24,
178 NSOpenGLPFADepthSize, (NSOpenGLPixelFormatAttribute)1,
179 NSOpenGLPFAStencilSize, (NSOpenGLPixelFormatAttribute)1,
180 (NSOpenGLPixelFormatAttribute)0
183 NSOpenGLPixelFormatAttribute double_attribs[] = {
184 NSOpenGLPFAAlphaSize, (NSOpenGLPixelFormatAttribute)1,
185 NSOpenGLPFAColorSize, (NSOpenGLPixelFormatAttribute)24,
186 NSOpenGLPFADoubleBuffer,
187 NSOpenGLPFADepthSize, (NSOpenGLPixelFormatAttribute)1,
188 NSOpenGLPFAStencilSize, (NSOpenGLPixelFormatAttribute)1,
189 (NSOpenGLPixelFormatAttribute)0
192 if (profile != PROFILE_COMPAT) {
196 NSOpenGLPixelFormatAttribute *attribs = doubleBuffer ? double_attribs : single_attribs;
198 NSOpenGLPixelFormat *pixelFormat = [[NSOpenGLPixelFormat alloc]
199 initWithAttributes:attribs];
201 return new CocoaVisual(pixelFormat);
205 createDrawable(const Visual *visual, int width, int height)
207 return new CocoaDrawable(visual, width, height);
211 createContext(const Visual *visual, Context *shareContext, Profile profile)
213 NSOpenGLPixelFormat *pixelFormat = static_cast<const CocoaVisual *>(visual)->pixelFormat;
214 NSOpenGLContext *share_context = nil;
215 NSOpenGLContext *context;
217 if (profile != PROFILE_COMPAT) {
222 share_context = static_cast<CocoaContext*>(shareContext)->context;
225 context = [[NSOpenGLContext alloc]
226 initWithFormat:pixelFormat
227 shareContext:share_context];
228 assert(context != nil);
230 return new CocoaContext(visual, profile, context);
234 makeCurrent(Drawable *drawable, Context *context)
236 if (!drawable || !context) {
237 [NSOpenGLContext clearCurrentContext];
239 CocoaDrawable *cocoaDrawable = static_cast<CocoaDrawable *>(drawable);
240 CocoaContext *cocoaContext = static_cast<CocoaContext *>(context);
242 [cocoaDrawable->window makeKeyAndOrderFront:nil];
243 [cocoaContext->context setView:[cocoaDrawable->window contentView]];
244 [cocoaContext->context makeCurrentContext];
246 cocoaDrawable->currentContext = cocoaContext->context;
253 processEvents(void) {
257 event = [NSApp nextEventMatchingMask:NSAnyEventMask
258 untilDate:[NSDate distantPast]
259 inMode:NSDefaultRunLoopMode
262 [NSApp sendEvent:event];
269 } /* namespace glws */