generated from YimMenu/YimMenuV2
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* kickstart vulkan API * Add Vulkan API Support (#21) * Add Vulkan Support [UNFINISHED] It will work in current state but when resizing the menu will disappear. Vulkan needs to be re-initted. I would've done this now but i have to be up tomorrow and not home for 2 days. Will be marked as draft if anyone wants to edit feel free. * Stuff * Fix resizing issue's and misc stuff * Remove unused pointer --------- Co-authored-by: Marcezsa <[email protected]>
- Loading branch information
Showing
16 changed files
with
818 additions
and
93 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
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,15 @@ | ||
include(FetchContent) | ||
|
||
message(STATUS "Setting up Vulkan Headers") | ||
FetchContent_Declare( | ||
Vulkan | ||
GIT_REPOSITORY https://github.com/KhronosGroup/Vulkan-Headers.git | ||
GIT_TAG sdk-1.1.108 # matches RDR2's SDK | ||
GIT_PROGRESS TRUE | ||
) | ||
|
||
set(CMAKE_WARN_DEPRECATED 0 CACHE INTERNAL "Suppress deprecation shortly") | ||
set(CMAKE_SUPPRESS_DEVELOPER_WARNINGS 1 CACHE INTERNAL "No dev warnings") | ||
FetchContent_MakeAvailable(Vulkan) | ||
set(CMAKE_SUPPRESS_DEVELOPER_WARNINGS 0 CACHE INTERNAL "Re-enable dev warnings") | ||
set(CMAKE_WARN_DEPRECATED 1 CACHE INTERNAL "Restore deprecation notices") |
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
Oops, something went wrong.