diff options
| author | Slashscreen <SlashScreen@users.noreply.github.com> | 2025-02-12 16:13:57 -0800 |
|---|---|---|
| committer | Slashscreen <SlashScreen@users.noreply.github.com> | 2025-02-12 16:13:57 -0800 |
| commit | b7f37bbee500b05233959e4b276310db6cd63ae4 (patch) | |
| tree | 1588ceb7b628a4830484c803fc4417ff7308211b /vendor/wgpu | |
| parent | 503813431b203437a56ba6e49307044387ae6d3c (diff) | |
removed cast.
Diffstat (limited to 'vendor/wgpu')
| -rw-r--r-- | vendor/wgpu/sdl3glue/glue_linux.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/wgpu/sdl3glue/glue_linux.odin b/vendor/wgpu/sdl3glue/glue_linux.odin index 10fff757f..a8dc6f180 100644 --- a/vendor/wgpu/sdl3glue/glue_linux.odin +++ b/vendor/wgpu/sdl3glue/glue_linux.odin @@ -44,7 +44,7 @@ GetSurface :: proc(instance: wgpu.Instance, window: ^sdl3.Window) -> wgpu.Surfac nextInChain = &wgpu.SurfaceDescriptorFromWaylandSurface {
chain = {sType = .SurfaceDescriptorFromWaylandSurface},
display = display,
- surface = u64(w_surface),
+ surface = w_surface,
},
},
)
|