mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
0b84137f40
Signed-off-by: Elias Naur <mail@eliasnaur.com>
14 lines
226 B
Go
14 lines
226 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
// +build linux freebsd windows
|
|
|
|
package headless
|
|
|
|
import (
|
|
"gioui.org/app/internal/egl"
|
|
)
|
|
|
|
func newContext() (context, error) {
|
|
return egl.NewContext(egl.EGL_DEFAULT_DISPLAY)
|
|
}
|