aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmir <emircengiz21@gmail.com>2024-07-24 10:29:34 +0300
committerEmir <emircengiz21@gmail.com>2024-07-24 10:29:34 +0300
commitba81a81ca8ada09a896a1a8fa3818d8b0c09be62 (patch)
treedbda5e6f185531374add87aacb223cc5fe901f85
parent57dc6c2e94473ec45ad6a8980e359fcd9cb8c409 (diff)
Update os_sdl2.odin
-rw-r--r--vendor/wgpu/examples/sdl2/os_sdl2.odin6
1 files changed, 3 insertions, 3 deletions
diff --git a/vendor/wgpu/examples/sdl2/os_sdl2.odin b/vendor/wgpu/examples/sdl2/os_sdl2.odin
index bbcec9923..0e6c5b57a 100644
--- a/vendor/wgpu/examples/sdl2/os_sdl2.odin
+++ b/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 {