-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
115 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,26 @@ | ||
{ | ||
"id": "gpu_amd_vulkan_aco", | ||
"name": "AMD: Radeon ACO Vulkan Compiler", | ||
"description": "Enable ACO based Vulkan shader compiler for RADV instead of LLVM", | ||
"url": "https://github.com/mesa3d/mesa", | ||
"group": "GPU", | ||
"requires": { | ||
"kernel_modules": ["amdgpu"] | ||
[ | ||
{ | ||
"id": "gpu_amd_vulkan_aco", | ||
"name": "AMD: Radeon ACO Vulkan Compiler", | ||
"description": "Enable ACO based Vulkan shader compiler for RADV instead of LLVM", | ||
"url": "https://github.com/mesa3d/mesa", | ||
"group": "GPU", | ||
"requires": { | ||
"kernel_modules": ["amdgpu"] | ||
}, | ||
"env": { | ||
"RADV_PERFTEST": "aco" | ||
} | ||
}, | ||
"env": { | ||
"RADV_PERFTEST": "aco" | ||
{ | ||
"id": "gpu_amd_glthread", | ||
"name": "AMD: Threaded Optimizations", | ||
"description": "Offload CPU computations to a worker thread", | ||
"url": "https://github.com/mesa3d/mesa", | ||
"group": "Performance", | ||
"requires": { | ||
"kernel_modules": ["amdgpu"] | ||
}, | ||
"command": "mesa_glthread ${command}" | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"id": "gpu_nvidia_glthread", | ||
"name": "NVIDIA: Threaded Optimizations", | ||
"description": "Offload CPU computations to a worker thread", | ||
"url": "https://download.nvidia.com/XFree86/Linux-x86_64/410.104/README/openglenvvariables.html", | ||
"group": "Performance", | ||
"requires": { | ||
"kernel_modules": ["nvidia"] | ||
}, | ||
"env": { | ||
"__GL_THREADED_OPTIMIZATIONS": "1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"id": "mumble", | ||
"name": "Mumble", | ||
"description": "This will overlay the nicknames of users in the Mumble channel or users talking over your currently running game", | ||
"url": "https://wiki.mumble.info/wiki/Overlay", | ||
"group": "Overlays", | ||
"requires": { | ||
"executables": ["mumble-overlay"] | ||
}, | ||
"command": "mumble-overlay ${command}" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"id": "vkbasalt", | ||
"name": "Enable vkBasalt", | ||
"description": "vkBasalt is a Vulkan post processing layer to enhance the visual graphics of games", | ||
"url": "https://github.com/DadSchoorse/vkBasalt", | ||
"group": "Post-processing", | ||
"env": { | ||
"ENABLE_VKBASALT": "1" | ||
} | ||
} |