mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
2a66bfb2b4
Package headless is more about rendering that windows. Move it accordingly. Signed-off-by: Elias Naur <mail@eliasnaur.com>
10 lines
146 B
Go
10 lines
146 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
// +build !windows
|
|
|
|
package headless
|
|
|
|
func newContext() (context, error) {
|
|
return newGLContext()
|
|
}
|