-
-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathvcpkg.json
More file actions
78 lines (78 loc) · 1.96 KB
/
Copy pathvcpkg.json
File metadata and controls
78 lines (78 loc) · 1.96 KB
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
{
"name": "gemini-watermark-tool",
"version": "0.3.2",
"description": "A tool to add/remove Gemini-style visible watermarks using reverse alpha blending",
"homepage": "https://github.com/allenk/GeminiWatermarkTool",
"license": "MIT",
"supports": "(windows & x64) | (linux & x64) | (osx & (x64 | arm64)) | android",
"dependencies": [
{
"name": "opencv4",
"default-features": false,
"features": [ "jpeg", "png", "webp" ]
},
"fmt",
"cli11",
"spdlog"
],
"features": {
"gui": {
"description": "Build with ImGui GUI support (OpenGL backend)",
"supports": "!android",
"dependencies": [
{
"name": "imgui",
"default-features": false,
"features": [ "sdl3-binding", "opengl3-binding", "freetype" ]
},
"sdl3",
"implot",
"glad",
"nativefiledialog-extended"
]
},
"d3d11": {
"description": "Add Direct3D 11 backend support (Windows only, requires gui feature)",
"supports": "windows",
"dependencies": [
"wil",
{
"name": "imgui",
"default-features": false,
"features": [ "dx11-binding" ]
}
]
},
"vulkan": {
"description": "Add Vulkan backend support (requires gui feature)",
"dependencies": [
{
"name": "imgui",
"default-features": false,
"features": [ "vulkan-binding" ]
},
{
"name": "sdl3",
"default-features": false,
"features": [ "vulkan" ]
},
"vulkan",
"vulkan-memory-allocator"
]
},
"ai-denoise": {
"description": "AI denoising for watermark residual cleanup (NCNN + Vulkan GPU)",
"dependencies": [
"volk"
]
}
},
"overrides": [
{
"name": "libsystemd",
"version": "257.8",
"port-version": 1
}
],
"builtin-baseline": "7e19f3c64cb636ee21f41bfe8558a6dfaae6236f"
}