├── .github ├── FUNDING.yml └── workflows │ └── cmake.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── examples ├── .gitignore ├── CMakeLists.txt ├── hello-sdl3webgpu.c └── utils.cmake ├── sdl3webgpu.c └── sdl3webgpu.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | releases/ 2 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/README.md -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- 1 | build*/ 2 | webgpu/ 3 | -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/hello-sdl3webgpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/examples/hello-sdl3webgpu.c -------------------------------------------------------------------------------- /examples/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/examples/utils.cmake -------------------------------------------------------------------------------- /sdl3webgpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/sdl3webgpu.c -------------------------------------------------------------------------------- /sdl3webgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eliemichel/sdl3webgpu/HEAD/sdl3webgpu.h --------------------------------------------------------------------------------