blob: f762750ac52fc0e110a092a5fb942cb9b9332564 [file] [log] [blame]
// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build (!darwin || ios || !cgo) && (!linux || android || !cgo) && (!openbsd || !cgo) && !windows
package gldriver
import (
"fmt"
"runtime"
"golang.org/x/exp/shiny/screen"
)
const useLifecycler = true
const handleSizeEventsAtChannelReceive = true
var errUnsupported = fmt.Errorf("gldriver: unsupported GOOS/GOARCH %s/%s or cgo not enabled", runtime.GOOS, runtime.GOARCH)
func newWindow(opts *screen.NewWindowOptions) (uintptr, error) { return 0, errUnsupported }
func initWindow(id *windowImpl) {}
func showWindow(id *windowImpl) {}
func closeWindow(id uintptr) {}
func drawLoop(w *windowImpl) {}
func surfaceCreate() error { return errUnsupported }
func main(f func(screen.Screen)) error { return errUnsupported }