mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
45da52cee7
The app and app/internal/wm packages are tightly coupled, requiring quite a bit of forwarding types, values and constants from the internal package to export it. Further, no other package imports package wm. This change merges the two packages. While here, drop the pre-Go 1.14 SIGPIPE workaround. Signed-off-by: Elias Naur <mail@eliasnaur.com>
50 lines
1.0 KiB
Go
50 lines
1.0 KiB
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
//go:build darwin && !ios && !nometal
|
|
// +build darwin,!ios,!nometal
|
|
|
|
package app
|
|
|
|
/*
|
|
#cgo CFLAGS: -Werror -xobjective-c -fmodules -fobjc-arc
|
|
|
|
@import AppKit;
|
|
|
|
@import QuartzCore.CAMetalLayer;
|
|
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
CALayer *gio_layerFactory(void) {
|
|
@autoreleasepool {
|
|
return [CAMetalLayer layer];
|
|
}
|
|
}
|
|
|
|
static CFTypeRef getMetalLayer(CFTypeRef viewRef) {
|
|
@autoreleasepool {
|
|
NSView *view = (__bridge NSView *)viewRef;
|
|
return CFBridgingRetain(view.layer);
|
|
}
|
|
}
|
|
|
|
static void resizeDrawable(CFTypeRef viewRef, CFTypeRef layerRef) {
|
|
@autoreleasepool {
|
|
NSView *view = (__bridge NSView *)viewRef;
|
|
CAMetalLayer *layer = (__bridge CAMetalLayer *)layerRef;
|
|
CGSize size = layer.bounds.size;
|
|
size.width *= layer.contentsScale;
|
|
size.height *= layer.contentsScale;
|
|
layer.drawableSize = size;
|
|
}
|
|
}
|
|
*/
|
|
import "C"
|
|
|
|
func getMetalLayer(view C.CFTypeRef) C.CFTypeRef {
|
|
return C.getMetalLayer(view)
|
|
}
|
|
|
|
func resizeDrawable(view, layer C.CFTypeRef) {
|
|
C.resizeDrawable(view, layer)
|
|
}
|