mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
1a417d353c
Signed-off-by: Elias Naur <mail@eliasnaur.com>
45 lines
1.2 KiB
Objective-C
45 lines
1.2 KiB
Objective-C
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
//+build darwin,ios
|
|
|
|
@import UIKit;
|
|
@import OpenGLES;
|
|
|
|
#include "gl_ios.h"
|
|
|
|
int gio_renderbufferStorage(CFTypeRef ctxRef, CFTypeRef layerRef, GLenum buffer) {
|
|
EAGLContext *ctx = (__bridge EAGLContext *)ctxRef;
|
|
CAEAGLLayer *layer = (__bridge CAEAGLLayer *)layerRef;
|
|
return (int)[ctx renderbufferStorage:buffer fromDrawable:layer];
|
|
}
|
|
|
|
int gio_presentRenderbuffer(CFTypeRef ctxRef, GLenum buffer) {
|
|
EAGLContext *ctx = (__bridge EAGLContext *)ctxRef;
|
|
return (int)[ctx presentRenderbuffer:buffer];
|
|
}
|
|
|
|
int gio_makeCurrent(CFTypeRef ctxRef) {
|
|
EAGLContext *ctx = (__bridge EAGLContext *)ctxRef;
|
|
return (int)[EAGLContext setCurrentContext:ctx];
|
|
}
|
|
|
|
CFTypeRef gio_createContext(void) {
|
|
EAGLContext *ctx = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES3];
|
|
if (ctx == nil) {
|
|
return nil;
|
|
}
|
|
return CFBridgingRetain(ctx);
|
|
}
|
|
|
|
CFTypeRef gio_createGLLayer(void) {
|
|
CAEAGLLayer *layer = [[CAEAGLLayer layer] init];
|
|
if (layer == nil) {
|
|
return nil;
|
|
}
|
|
layer.drawableProperties = @{kEAGLDrawablePropertyColorFormat: kEAGLColorFormatSRGBA8};
|
|
//layer.presentsWithTransaction = YES;
|
|
layer.opaque = YES;
|
|
layer.anchorPoint = CGPointMake(0, 0);
|
|
return CFBridgingRetain(layer);
|
|
}
|