forked from joejulian/gio
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)
|
|
}
|