Skip to content

Commit 040c062

Browse files
committed
update import paths
Signed-off-by: Tiago Natel de Moura <[email protected]>
1 parent 2ddb0c4 commit 040c062

File tree

9 files changed

+15
-16
lines changed

9 files changed

+15
-16
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# drm
22

33
The _Direct Rendering Manager_ (DRM) is a kernel framework to manage _Graphical Processing Units_ (GPU).
4-
It's a kernel abstractions to GPU drivers and a userspace API
4+
It's a kernel abstractions to GPU drivers and a userspace API
55
designed to support the needs of complex graphics devices.
66

77
DRM was first implemented on Linux but ported to FreeBSD, NetBSD and Solaris (others?). It's the lower level interface between opengl and the graphics card. With this Go library, theoretically, now it's possible to create a X server or a pure OpenGL library in Go (no bindings).
@@ -13,5 +13,4 @@ Another possibility is using Go to make GPGPU (like opencl).
1313

1414
## Examples
1515

16-
See the [examples](https://github.com/tiago4orion/drm/tree/master/_examples) directory.
17-
16+
See the [examples](https://github.com/NeowayLabs/drm/tree/master/_examples) directory.

cap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"unsafe"
66

7-
"github.com/tiago4orion/drm/ioctl"
7+
"github.com/NeowayLabs/drm/ioctl"
88
)
99

1010
type (

cap_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package drm_test
33
import (
44
"testing"
55

6-
"github.com/tiago4orion/drm"
6+
"github.com/NeowayLabs/drm"
77
)
88

99
func TestHasDumbBuffer(t *testing.T) {

codes.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package drm
33
import (
44
"unsafe"
55

6-
"github.com/tiago4orion/drm/ioctl"
6+
"github.com/NeowayLabs/drm/ioctl"
77
)
88

99
const IOCTLBase = 'd'

drm.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os"
77
"unsafe"
88

9-
"github.com/tiago4orion/drm/ioctl"
9+
"github.com/NeowayLabs/drm/ioctl"
1010
)
1111

1212
type (
@@ -115,9 +115,9 @@ func GetVersion(file *os.File) (Version, error) {
115115
Minor: version.Minor,
116116
Patch: version.Patch,
117117

118-
Name: string(bytes.TrimFunc(name, nozero)),
119-
Date: string(bytes.TrimFunc(date, nozero)),
120-
Desc: string(bytes.TrimFunc(desc, nozero)),
118+
Name: string(bytes.TrimFunc(name, nozero)),
119+
Date: string(bytes.TrimFunc(date, nozero)),
120+
Desc: string(bytes.TrimFunc(desc, nozero)),
121121
}
122122

123123
return v, nil

drm_main_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"testing"
77

8-
"github.com/tiago4orion/drm"
8+
"github.com/NeowayLabs/drm"
99
)
1010

1111
type (

drm_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package drm_test
33
import (
44
"testing"
55

6-
"github.com/tiago4orion/drm"
7-
"github.com/tiago4orion/drm/mode"
6+
"github.com/NeowayLabs/drm"
7+
"github.com/NeowayLabs/drm/mode"
88
)
99

1010
func TestDRIOpen(t *testing.T) {

examples_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package drm_test
33
import (
44
"fmt"
55

6-
"github.com/tiago4orion/drm"
6+
"github.com/NeowayLabs/drm"
77
)
88

99
func ExampleHasDumbBuffers() {

mode/mode.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"os"
55
"unsafe"
66

7-
"github.com/tiago4orion/drm"
8-
"github.com/tiago4orion/drm/ioctl"
7+
"github.com/NeowayLabs/drm"
8+
"github.com/NeowayLabs/drm/ioctl"
99
)
1010

1111
const (

0 commit comments

Comments
 (0)