mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-28 18:30:06 +00:00
Merge pull request #3294 from laytan/update-glfw-from-3.3.8-to-3.4
glfw: update from 3.3.8 to 3.4
This commit is contained in:
+3
-3
@@ -6,8 +6,8 @@ import "vendor:glfw"
|
||||
import "core:os"
|
||||
|
||||
GLFW_MAJOR :: 3
|
||||
GLFW_MINOR :: 3
|
||||
GLFW_PATCH :: 4
|
||||
GLFW_MINOR :: 4
|
||||
GLFW_PATCH :: 0
|
||||
|
||||
TEST_count := 0
|
||||
TEST_fail := 0
|
||||
@@ -46,4 +46,4 @@ main :: proc() {
|
||||
test_glfw :: proc(t: ^testing.T) {
|
||||
major, minor, patch := glfw.GetVersion()
|
||||
expect(t, major == GLFW_MAJOR && minor == GLFW_MINOR, fmt.tprintf("Expected GLFW.GetVersion: %v.%v.%v, got %v.%v.%v instead", GLFW_MAJOR, GLFW_MINOR, GLFW_PATCH, major, minor, patch))
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user