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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
{
"name": "dawn",
"version": "20250922.223923",
"port-version": 1,
"description": "Dawn is an open-source and cross-platform implementation of the WebGPU standard.",
"homepage": "https://dawn.googlesource.com/dawn",
"license": "BSD-3-Clause",
"dependencies": [
{
"name": "abseil",
"platform": "!emscripten"
},
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
},
{
"name": "vcpkg-get-python-packages",
"host": true
}
],
"default-features": [
{
"name": "d3d11",
"platform": "windows"
},
{
"name": "d3d12",
"platform": "windows"
},
{
"name": "gl",
"platform": "linux | freebsd | openbsd"
},
{
"name": "gles",
"platform": "android | linux | freebsd | openbsd"
},
{
"name": "metal",
"platform": "osx | ios"
},
{
"name": "vulkan",
"platform": "(windows & !uwp) | android | linux | freebsd | openbsd"
},
{
"name": "x11",
"platform": "linux | freebsd | openbsd"
}
],
"features": {
"d3d11": {
"description": "Direct3D 11 backend support",
"supports": "windows"
},
"d3d12": {
"description": "Direct3D 12 backend support",
"supports": "windows"
},
"gl": {
"description": "Desktop OpenGL backend support",
"supports": "linux | freebsd | openbsd",
"dependencies": [
"egl-registry",
"opengl-registry"
]
},
"gles": {
"description": "OpenGL ES backend support",
"supports": "android | linux | freebsd | openbsd",
"dependencies": [
"egl-registry",
"opengl-registry"
]
},
"metal": {
"description": "Metal backend support",
"supports": "osx | ios"
},
"vulkan": {
"description": "Vulkan backend support",
"supports": "(windows & !uwp) | android | linux | freebsd | openbsd",
"dependencies": [
"vulkan-headers",
"vulkan-utility-libraries"
]
},
"wayland": {
"description": "Wayland support",
"supports": "linux | freebsd | openbsd"
},
"x11": {
"description": "X11 support",
"supports": "linux | freebsd | openbsd"
}
}
}
|