diff options
| author | Emir <emircengiz21@gmail.com> | 2024-07-24 10:29:34 +0300 |
|---|---|---|
| committer | Emir <emircengiz21@gmail.com> | 2024-07-24 10:29:34 +0300 |
| commit | ba81a81ca8ada09a896a1a8fa3818d8b0c09be62 (patch) | |
| tree | dbda5e6f185531374add87aacb223cc5fe901f85 | |
| parent | 57dc6c2e94473ec45ad6a8980e359fcd9cb8c409 (diff) | |
Update os_sdl2.odin
| -rw-r--r-- | vendor/wgpu/examples/sdl2/os_sdl2.odin | 6 |
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 { |