https://github.com/gecko0307/bindbc-spirvcross
Dynamic binding to SPIRV-Cross
https://github.com/gecko0307/bindbc-spirvcross
Last synced: about 2 months ago
JSON representation
Dynamic binding to SPIRV-Cross
- Host: GitHub
- URL: https://github.com/gecko0307/bindbc-spirvcross
- Owner: gecko0307
- License: bsl-1.0
- Created: 2025-03-10T18:13:57.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-03-10T18:27:44.000Z (about 2 months ago)
- Last Synced: 2025-03-10T19:29:30.793Z (about 2 months ago)
- Language: D
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING.txt
Awesome Lists containing this project
README
# BindBC-SPIRVCross
BindBC binding to [SPIRV-Cross](https://github.com/KhronosGroup/SPIRV-Cross), a SPIR-V decompilation and reflection toolchain from Khronos Group.## Usage
```
dub add bindbc-spirvcross
```BindBC-SPIRVCross relies on a shared library: `spirv-cross.dll` on Windows and `libspirv-cross.so` on Linux. To compile SPIRV-Cross with shared libraries, use `BUILD_SHARED_LIBS` CMake option, for example:
```
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON
```