forked from joejulian/gio
060ae1cdf9
They're automatically added by Go 1.17 source formatters. This change adds them all now. Signed-off-by: Elias Naur <mail@eliasnaur.com>
11 lines
166 B
Go
11 lines
166 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
//go:build !windows
|
|
// +build !windows
|
|
|
|
package headless
|
|
|
|
func newContext() (context, error) {
|
|
return newGLContext()
|
|
}
|