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
|
{
"name": "libva",
"version": "2.20.0",
"description": "Libva is an implementation for VA-API (Video Acceleration API)",
"homepage": "https://github.com/intel/libva",
"license": "MIT",
"supports": "linux",
"dependencies": [
{
"name": "vcpkg-tool-meson",
"host": true
}
],
"features": {
"glx": {
"description": "Build with GLX support",
"supports": "linux",
"dependencies": [
{
"name": "libva",
"features": [
"x11"
]
}
]
},
"wayland": {
"description": "Build with Wayland support",
"supports": "linux"
},
"x11": {
"description": "Build with X11 support",
"supports": "linux"
}
}
}
|