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