1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{
"name": "shaderwriter",
"version": "2.9.0",
"port-version": 1,
"description": "Library to write shaders directly from C++ code, supports GLSL, HLSL and SPIRV outputs.",
"homepage": "https://github.com/DragonJoker/ShaderWriter",
"license": "MIT",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"default-features": [
"spirv"
],
"features": {
"glsl": {
"description": "Compiles GLSL exporter."
},
"hlsl": {
"description": "Compiles HLSL exporter."
},
"spirv": {
"description": "Compiles SPIR-V exporter."
}
}
}
|