forked from go-gl/example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.go
25 lines (21 loc) · 873 Bytes
/
examples.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2012 The go-gl Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package examples
// Intentionally empty package here to make the package "go install"-able.
import (
// These dependencies are listed here to prevent "go get" from having to
// do more work later. Otherwise, the later delay would count against
// the tests, which only have five minutes to run - network and build
// activity can take a long time on a heavily loaded test node.
_ "github.com/andrebq/gas"
_ "github.com/banthar/Go-SDL/sdl"
_ "github.com/go-gl/gl"
_ "github.com/go-gl/glfw"
_ "github.com/go-gl/glow/gl-core/3.3/gl"
_ "github.com/go-gl/glow/gl-core/4.4/gl"
_ "github.com/go-gl/glow/gl/2.1/gl"
_ "github.com/go-gl/gltext"
_ "github.com/go-gl/glu"
_ "github.com/go-gl/testutils"
)