-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Beau test app #1839
Open
beau-lunarg
wants to merge
42
commits into
dev
Choose a base branch
from
beau-test-app
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Beau test app #1839
Changes from 25 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
0e6a4a2
Ported vk bootstrap for test apps
beau-lunarg e6c9ffc
Common test app cmake target
beau-lunarg 8e7b58c
Move window functions to test app base
beau-lunarg 5fff727
Move swapchain creating to test app base
beau-lunarg ad9469a
Refactor framebuffer creation into test app base
beau-lunarg a478c15
Refactor command pool creation to test_app_base
beau-lunarg 81c25c8
Separate sync object from render data
beau-lunarg b9dd99e
Move sync object creation into test app base
beau-lunarg 025cb13
Move triangle runner into namespace
beau-lunarg 731d6f6
Load shader module from file
beau-lunarg f04f20b
Refactor errors
beau-lunarg b80ecdc
Move init to test app base
beau-lunarg fe7a170
Simplify create framebuffers
beau-lunarg 3fb08a9
Move swapchain creation for init to test app base
beau-lunarg 6f06e31
Test app base version of recreate swapchain
beau-lunarg 6d8d3a3
Test app base class
beau-lunarg d66b9b3
Test apps can configure instance creation, physical device selection,…
beau-lunarg 9b5e836
Cleanup triangle
beau-lunarg f7de695
Include cleanup
beau-lunarg 8aa0d84
Multisample depth test app
beau-lunarg 154d4fc
Fix multiple frames
beau-lunarg a8c0b7a
Triangle test with clean validation
beau-lunarg 62c3b61
Clean validation for multisample
beau-lunarg 4d432eb
Format
beau-lunarg 1c98a17
Tricky format issue
beau-lunarg 4328526
Remove sdl submodule
beau-lunarg 5dfb7f7
Add SDL3 dependency through CMAKE
beau-lunarg 4e72f0b
Win32 conditional to copy dlls
beau-lunarg 508d8f9
Fix copyright names and years
beau-lunarg 5833c9a
Setup extensions from device builder
beau-lunarg 28e3e55
Fix formatting
beau-lunarg adf499a
Strange formatting issue
beau-lunarg 02882b6
Removed overuse of this->.
beau-lunarg e7ed80e
Fix format issues
beau-lunarg f7a628b
Same formatting issue as before
beau-lunarg 6128e34
Test pipeline binaries and host image copy
ziga-lunarg 8cc5d16
Add test for shader objects
ziga-lunarg db20e08
Change max frames to size_t
beau-lunarg 7fff54e
Fix formatting in pipeline binaries test app
beau-lunarg a2b2c8e
Mark configure methods as override in pipeline-binaries test app
beau-lunarg 98bde8e
Fix format issues in shader objects test app
beau-lunarg 92e1326
Add missing overrides in host image copy and shader objects test apps
beau-lunarg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
9,608 changes: 9,608 additions & 0 deletions
9,608
external/Vulkan-Utility-Libraries/vk_enum_string_helper.h
Large diffs are not rendered by default.
Oops, something went wrong.
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,31 @@ | ||
############################################################################### | ||
# Copyright (c) 2018-2020 LunarG, Inc. | ||
ziga-lunarg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# Copyright (c) 2020-2023 Advanced Micro Devices, Inc. | ||
# All rights reserved | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to | ||
# deal in the Software without restriction, including without limitation the | ||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
# sell copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
# IN THE SOFTWARE. | ||
# | ||
# Author: LunarG Team | ||
# Author: AMD Developer Tools Team | ||
# Description: CMake script for gfxrecon tests | ||
############################################################################### | ||
|
||
add_subdirectory(test_apps) | ||
|
||
# TODO: runner goes here |
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,32 @@ | ||
############################################################################### | ||
# Copyright (c) 2018-2020 LunarG, Inc. | ||
ziga-lunarg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
# Copyright (c) 2020-2023 Advanced Micro Devices, Inc. | ||
# All rights reserved | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to | ||
# deal in the Software without restriction, including without limitation the | ||
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
# sell copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
# IN THE SOFTWARE. | ||
# | ||
# Author: LunarG Team | ||
# Author: AMD Developer Tools Team | ||
# Description: CMake script for test apps | ||
############################################################################### | ||
|
||
add_custom_target(gfxrecon-testapps) | ||
|
||
add_subdirectory(triangle) | ||
add_subdirectory(multisample-depth) |
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,2 @@ | ||
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION 1.3.296) | ||
set(VK_BOOTSTRAP_SOURCE_HEADER_VERSION_GIT_TAG v1.3.296) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change says "ported vk boostrap" but I don't see it added as a submodule.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It wasn't usable without deep changes, so I ended up copying and reworking the code