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