Skip to content
This repository was archived by the owner on Dec 31, 2022. It is now read-only.

Commit b01e28d

Browse files
authored
Merge pull request #9 from inkyblackness/update/to-3.0.0
update to imgui-go/v3
2 parents 41b3c9b + 0979cd6 commit b01e28d

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

assets/screenshot.png

1.93 KB
Loading

cmd/example_glfw_opengl2/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"os"
88

9-
"github.com/inkyblackness/imgui-go/v2"
9+
"github.com/inkyblackness/imgui-go/v3"
1010

1111
"github.com/inkyblackness/imgui-go-examples/internal/example"
1212
"github.com/inkyblackness/imgui-go-examples/internal/platforms"

cmd/example_glfw_opengl3/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"os"
88

9-
"github.com/inkyblackness/imgui-go/v2"
9+
"github.com/inkyblackness/imgui-go/v3"
1010

1111
"github.com/inkyblackness/imgui-go-examples/internal/example"
1212
"github.com/inkyblackness/imgui-go-examples/internal/platforms"

cmd/example_sdl_opengl2/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"os"
88

9-
"github.com/inkyblackness/imgui-go/v2"
9+
"github.com/inkyblackness/imgui-go/v3"
1010

1111
"github.com/inkyblackness/imgui-go-examples/internal/example"
1212
"github.com/inkyblackness/imgui-go-examples/internal/platforms"

cmd/example_sdl_opengl3/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"os"
88

9-
"github.com/inkyblackness/imgui-go/v2"
9+
"github.com/inkyblackness/imgui-go/v3"
1010

1111
"github.com/inkyblackness/imgui-go-examples/internal/example"
1212
"github.com/inkyblackness/imgui-go-examples/internal/platforms"

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require (
44
github.com/davecgh/go-spew v1.1.1 // indirect
55
github.com/go-gl/gl v0.0.0-20190320180904-bf2b1f2f34d7
66
github.com/go-gl/glfw v0.0.0-20191125211704-12ad95a8df72
7-
github.com/inkyblackness/imgui-go/v2 v2.4.0
7+
github.com/inkyblackness/imgui-go/v3 v3.0.0
88
github.com/veandco/go-sdl2 v0.4.0
99
)
1010

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ github.com/go-gl/gl v0.0.0-20190320180904-bf2b1f2f34d7 h1:SCYMcCJ89LjRGwEa0tRluN
55
github.com/go-gl/gl v0.0.0-20190320180904-bf2b1f2f34d7/go.mod h1:482civXOzJJCPzJ4ZOX/pwvXBWSnzD4OKMdH4ClKGbk=
66
github.com/go-gl/glfw v0.0.0-20191125211704-12ad95a8df72 h1:LgLYrxDRSVv3kStk6louYTP1ekZ6t7HZY/X05KUyaeM=
77
github.com/go-gl/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
8-
github.com/inkyblackness/imgui-go/v2 v2.4.0 h1:Trb694GPM+ImDgJaOoEXNWk0ofvI1R05JFGTB6PLFH4=
9-
github.com/inkyblackness/imgui-go/v2 v2.4.0/go.mod h1:cwQKd6U2onyuT5qwSC3DKCRsUE1SQ58TSVVpLoW/pDs=
8+
github.com/inkyblackness/imgui-go/v3 v3.0.0 h1:+gOBA/xlr528SOGDteKQS+q7QkyBcOi+znhn18BMs/8=
9+
github.com/inkyblackness/imgui-go/v3 v3.0.0/go.mod h1:WdM5LZHuTrjd1d+yd2fA19t3mG538kJ6zOLB2sAXF6U=
1010
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
1111
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
1212
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

internal/demo/Window.go

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

6-
"github.com/inkyblackness/imgui-go/v2"
6+
"github.com/inkyblackness/imgui-go/v3"
77
)
88

99
type windowFlags struct {

internal/example/Run.go

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

7-
"github.com/inkyblackness/imgui-go/v2"
7+
"github.com/inkyblackness/imgui-go/v3"
88

99
"github.com/inkyblackness/imgui-go-examples/internal/demo"
1010
)

internal/platforms/glfw.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"runtime"
99

1010
"github.com/go-gl/glfw/v3.2/glfw"
11-
"github.com/inkyblackness/imgui-go/v2"
11+
"github.com/inkyblackness/imgui-go/v3"
1212
)
1313

1414
// GLFWClientAPI identifies the render system that shall be initialized.

0 commit comments

Comments
 (0)