blob: 0baac9155c486df47c5e3e00e5f7397ea7e99d3a [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.
// +build linux,!android dragonfly
package driver
import (
"golang.org/x/exp/shiny/driver/x11driver"
"golang.org/x/exp/shiny/screen"
)
func main(f func(screen.Screen)) {
x11driver.Main(f)
}