add examples/all/sdl3 for all sdl3 dependant packages

+ adds the wgpu glue packages to examples/all
This commit is contained in:
Laytan Laats
2025-06-02 21:05:38 +02:00
parent 8135dda2fc
commit e09f226126
4 changed files with 43 additions and 21 deletions
+13
View File
@@ -0,0 +1,13 @@
/*
Imports all packages using SDL3, can't go in the parent directory
because SDL2 and SDL3 will have naming conflicts.
*/
package all_sdl3
import SDL "vendor:sdl3"
import IMG "vendor:sdl3/image"
import TTF "vendor:sdl3/ttf"
_ :: SDL
_ :: IMG
_ :: TTF
+5
View File
@@ -0,0 +1,5 @@
package all_sdl3
import wgpu_sdl3_glue "vendor:wgpu/sdl3glue"
_ :: wgpu_sdl3_glue