cloud-game/pkg/worker/thread/thread.go
Sergey Stepanov 9b56ffc87c
Fix macOS tests
Main thread locking hangs OpenGL emulators.
2024-05-07 21:05:12 +03:00

7 lines
139 B
Go

//go:build !darwin
package thread
func Wrap(f func()) { f() }
func Main(f func()) { f() }
func SwitchGraphics(s bool) {}