summaryrefslogtreecommitdiffstats
path: root/shiny/driver/driver_fallback.go
diff options
context:
space:
mode:
Diffstat (limited to 'shiny/driver/driver_fallback.go')
-rw-r--r--shiny/driver/driver_fallback.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/shiny/driver/driver_fallback.go b/shiny/driver/driver_fallback.go
new file mode 100644
index 0000000..93b0c19
--- /dev/null
+++ b/shiny/driver/driver_fallback.go
@@ -0,0 +1,18 @@
+// 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 && (!linux || android) && !windows && !dragonfly && !openbsd
+
+package driver
+
+import (
+ "errors"
+
+ "golang.org/x/exp/shiny/driver/internal/errscreen"
+ "golang.org/x/exp/shiny/screen"
+)
+
+func main(f func(screen.Screen)) {
+ f(errscreen.Stub(errors.New("no driver for accessing a screen")))
+}