Browse Source

Update os_sdl2.odin

Emir 1 year ago
parent
commit
ba81a81ca8
1 changed files with 3 additions and 3 deletions
  1. 3 3
      vendor/wgpu/examples/sdl2/os_sdl2.odin

+ 3 - 3
vendor/wgpu/examples/sdl2/os_sdl2.odin

@@ -21,11 +21,11 @@ os_init :: proc(os: ^OS) {
 	
 	window_flags: sdl2.WindowFlags = {.SHOWN, .ALLOW_HIGHDPI, .RESIZABLE}
 	os.window = sdl2.CreateWindow(
-		"wgpu triangle",
+		"WGPU Native Triangle",
 		sdl2.WINDOWPOS_CENTERED,
 		sdl2.WINDOWPOS_CENTERED,
-		800,
-		600,
+		960,
+		540,
 		window_flags,
 	)
 	if os.window == nil {