1

我正在尝试以编程方式为 OS X 应用程序创建一个带有 OpenGL 上下文的 Cocoa 窗口。我一直无法在网上找到一个不使用 Interface Builder 来创建窗口和 OpenGL 视图的示例。

我想要的只是glClear让我的窗口变成洋红色(0xFF00FF)。但是,窗口仍然是白色的。

这是我的项目:

AppDelegate.h

#import <Cocoa/Cocoa.h>

@interface AppDelegate : NSObject <NSApplicationDelegate> {
    NSWindow *window;
    NSOpenGLContext *openGLContext;
}

@property (assign) NSWindow *window;
@property (assign) NSOpenGLContext *openGLContext;

- (void)draw;

@end

AppDelegate.m

#import "AppDelegate.h"

@implementation AppDelegate

@synthesize window;
@synthesize openGLContext;

static NSOpenGLPixelFormatAttribute glAttributes[] = {
    0
};

- (void)draw {
    NSLog(@"Drawing...");

    [self.openGLContext makeCurrentContext];

    glClearColor(1, 0, 1, 1);
    glClear(GL_COLOR_BUFFER_BIT);

    [self.openGLContext flushBuffer];
}

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    NSRect frame = NSMakeRect(0, 0, 200, 200);

    self.window = [[[NSWindow alloc]
        initWithContentRect:frame
        styleMask:NSBorderlessWindowMask
        backing:NSBackingStoreBuffered
        defer:NO] autorelease];
    [self.window makeKeyAndOrderFront:nil];

    NSOpenGLPixelFormat *pixelFormat
        = [[NSOpenGLPixelFormat alloc] initWithAttributes:glAttributes];
    self.openGLContext = [[NSOpenGLContext alloc]
        initWithFormat:pixelFormat shareContext:nil];
    [self.openGLContext setView:[self.window contentView]];

    [NSTimer
        scheduledTimerWithTimeInterval:.1
        target:self
        selector:@selector(draw)
        userInfo:nil
        repeats:YES];
}

- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)_app {
    return YES;
}

@end

主文件

#import "AppDelegate.h"

#import <Cocoa/Cocoa.h>

int main(int argc, char **argv) {
    AppDelegate *appDelegate = [[AppDelegate alloc] init];
    return NSApplicationMain(argc, (const char **) argv);
}
4

2 回答 2

2

的文档-[NSOpenGLContext flushBuffer]说:

讨论

如果接收者不是双缓冲上下文,则此调用不执行任何操作。

NSOpenGLPFADoubleBuffer您可以通过在像素格式属性中包含您的上下文来双缓冲。或者,您可以调用glFlush()而不是-[NSOpenGLContext flushBuffer]让您的上下文保持单缓冲。

于 2013-01-20T20:41:22.823 回答
0

将此代码用于像素格式属性。

NSOpenGLPixelFormatAttribute glAttributes[] =
{
    NSOpenGLPFAColorSize, 24,
    NSOpenGLPFAAlphaSize, 8,
    NSOpenGLPFADoubleBuffer,
    NSOpenGLPFAAccelerated,
    0
};

我已经对其进行了测试,你得到了你正在寻找的洋红色屏幕。

于 2015-04-27T05:40:59.827 回答