Skip to content

Commit c16b1d2

Browse files
committed
AMD FidelityFX SDK 1.1.2
1 parent be99c36 commit c16b1d2

File tree

151 files changed

+7451
-3934
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+7451
-3934
lines changed

.gitlab-ci.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ format_check:
2424

2525
build_release_cauldron:
2626
stage: build
27-
needs: []
2827
script:
2928
- 'mkdir build'
3029
- 'cd build'
@@ -37,7 +36,6 @@ build_release_cauldron:
3736

3837
build_debug_cauldron:
3938
stage: build
40-
needs: []
4139
script:
4240
- 'mkdir build'
4341
- 'cd build'
@@ -50,7 +48,6 @@ build_debug_cauldron:
5048

5149
build_release_sdk_dx12:
5250
stage: build
53-
needs: []
5451
script:
5552
- 'cd sdk/'
5653
- 'mkdir build'
@@ -63,7 +60,6 @@ build_release_sdk_dx12:
6360

6461
build_debug_sdk_dx12:
6562
stage: build
66-
needs: []
6763
script:
6864
- 'cd sdk/'
6965
- 'mkdir build'
@@ -76,7 +72,6 @@ build_debug_sdk_dx12:
7672

7773
build_release_sdk_vk:
7874
stage: build
79-
needs: []
8075
script:
8176
- 'cd sdk/'
8277
- 'mkdir build'
@@ -89,7 +84,6 @@ build_release_sdk_vk:
8984

9085
build_debug_sdk_vk:
9186
stage: build
92-
needs: []
9387
script:
9488
- 'cd sdk/'
9589
- 'mkdir build'
@@ -102,7 +96,6 @@ build_debug_sdk_vk:
10296

10397
build_debug_api_dll_dx12:
10498
stage: build
105-
needs: []
10699
script:
107100
- 'cd ffx-api'
108101
- 'mkdir build'
@@ -115,7 +108,6 @@ build_debug_api_dll_dx12:
115108

116109
build_release_api_dll_dx12:
117110
stage: build
118-
needs: []
119111
script:
120112
- 'cd ffx-api'
121113
- 'mkdir build'
@@ -129,7 +121,6 @@ build_release_api_dll_dx12:
129121

130122
build_debug_api_dll_vk:
131123
stage: build
132-
needs: []
133124
script:
134125
- 'cd ffx-api'
135126
- 'mkdir build'
@@ -142,7 +133,6 @@ build_debug_api_dll_vk:
142133

143134
build_release_api_dll_vk:
144135
stage: build
145-
needs: []
146136
script:
147137
- 'cd ffx-api'
148138
- 'mkdir build'
@@ -209,14 +199,14 @@ build_debug_samples_vk:
209199
artifacts:
210200
paths:
211201
- ./bin
212-
202+
213203
package_release_samples_pc:
214204
stage: package
215205
needs:
216206
- job: build_release_api_dll_dx12
217207
- job: build_release_api_dll_vk
218208
- job: build_release_samples_dx12
219-
- job: build_release_samples_vk
209+
- job: build_release_samples_vk
220210
script:
221211
- echo "Packaging FidelityFX SDK Samples"
222212
- 'copy %VULKAN_SDK%\Bin\glslc.exe .\bin'
@@ -235,4 +225,4 @@ package_release_samples_pc:
235225
- ./common.cmake
236226
- ./LICENSE.txt
237227
- ./readme.md
238-
- ./sample.cmake
228+
- ./sample.cmake
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## FidelityFX SDK Code Quality
2+
(Which SDK sample project or component has a code quality issue)
3+
4+
## Code quality issue description
5+
(Describe in as much detail what constitutes the quality issue, including as much descriptive information as possible)
6+
7+
(This issue category is primarily for code review issues in sample and component code, but primarily for issues of structure, performance, and future maintainability. Code linting issues are acceptable only while automatic code linting isn't a production feature. Please consult the coding guidelines to help you assess code quality issues)
8+
9+
/label ~code-quality
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## FidelityFX SDK Compatibility Issue
2+
(Which SDK sample project or component has a compatibility issue)
3+
4+
## Compatibility issue description
5+
(Describe in as much detail what constitutes the compatibility issue, including as much descriptive information as possible)
6+
7+
(This issue category is primarily for compatibility issues in samples, where the sample runs correctly on one combination of CPU and GPU, but a different CPU or GPU causes issues. Please list working combinations wherever possible)
8+
9+
## What built the sample project or component
10+
11+
- [ ] code was built locally
12+
- [ ] code was built by CI
13+
14+
(If the code was built by CI, please insert a link to the CI job here)
15+
16+
## System setup
17+
- Windows version: <PLEASE FILL IN>
18+
- Windows SDK version: <PLEASE FILL IN>
19+
- Vulkan SDK version: <PLEASE FILL IN>
20+
- CMake version: <PLEASE FILL IN>
21+
- Visual Studio version: <PLEASE FILL IN>
22+
- CPU: <PLEASE FILL IN>
23+
- GPU: <PLEASE FILL IN>
24+
- GPU driver version: <PLEASE FILL IN>
25+
26+
## Relevant logs or screenshots
27+
(Paste any relevant logs or screenshots to help diagnose and reproduce the compatibility issue)
28+
29+
/label ~compatibility-issue
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## FidelityFX SDK Execution Failure
2+
(Which SDK sample project or component failed to execute)
3+
4+
## Execution failure description
5+
(Describe in as much detail what constitutes the execution failure, including the text of error dialogs and any relevant extra information)
6+
7+
## What built the sample project or component
8+
9+
- [ ] code was built locally
10+
- [ ] code was built by CI
11+
12+
(If the code was built by CI, please insert a link to the CI job here)
13+
14+
## System setup
15+
- Windows version: <PLEASE FILL IN>
16+
- Windows SDK version: <PLEASE FILL IN>
17+
- Vulkan SDK version: <PLEASE FILL IN>
18+
- CMake version: <PLEASE FILL IN>
19+
- Visual Studio version: <PLEASE FILL IN>
20+
- CPU: <PLEASE FILL IN>
21+
- GPU: <PLEASE FILL IN>
22+
- GPU driver version: <PLEASE FILL IN>
23+
24+
## Relevant logs or screenshots
25+
(Paste any relevant logs or screenshots to help diagnose the execution failure)
26+
27+
/label ~execution-failure ~qa-report
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## FidelityFX SDK Functional Issue
2+
(Which SDK sample project or component has a functional issue)
3+
4+
## Functional issue description
5+
(Describe in as much detail what constitutes the functional issue, including as much descriptive information as possible)
6+
7+
(This issue category is primarily for UI/UX failures in samples, such as UI components not triggering the correct behaviours)
8+
9+
## What built the sample project or component
10+
11+
- [ ] code was built locally
12+
- [ ] code was built by CI
13+
14+
(If the code was built by CI, please insert a link to the CI job here)
15+
16+
## System setup
17+
- Windows version: <PLEASE FILL IN>
18+
- Windows SDK version: <PLEASE FILL IN>
19+
- Vulkan SDK version: <PLEASE FILL IN>
20+
- CMake version: <PLEASE FILL IN>
21+
- Visual Studio version: <PLEASE FILL IN>
22+
- CPU: <PLEASE FILL IN>
23+
- GPU: <PLEASE FILL IN>
24+
- GPU driver version: <PLEASE FILL IN>
25+
26+
## Relevant logs or screenshots
27+
(Paste any relevant logs or screenshots to help diagnose and reproduce the functional issue)
28+
29+
/label ~functional-issue
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## FidelityFX SDK non-CI Build Failure
2+
(Which SDK sample project or component failed to build outside of CI)
3+
4+
## Build failure output
5+
(Paste the output from the Output window in Visual Studio. Please use code blocks (```) to format the output, to make it easier to read)
6+
7+
## Build information
8+
9+
(If the code is successfully built by CI, please insert a link to a passing CI job here)
10+
11+
## System setup
12+
- Windows version: <PLEASE FILL IN>
13+
- Windows SDK version: <PLEASE FILL IN>
14+
- Vulkan SDK version: <PLEASE FILL IN>
15+
- CMake version: <PLEASE FILL IN>
16+
- Visual Studio version: <PLEASE FILL IN>
17+
18+
## Relevant logs or screenshots
19+
(Paste any relevant logs or screenshots to help diagnose the failure)
20+
21+
/label ~non-ci-build-failure ~qa-report
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## FidelityFX SDK Performance Issue
2+
(Which SDK sample project or component has a performance issue)
3+
4+
## Performance issue description
5+
(Describe in as much detail what constitutes the performance issue, including as much descriptive information as possible, including information about prior performance runs or expectations where applicable)
6+
7+
## What built the sample project or component
8+
9+
- [ ] code was built locally
10+
- [ ] code was built by CI
11+
12+
(If the code was built by CI, please insert a link to the CI job here)
13+
14+
## System setup
15+
- Windows version: <PLEASE FILL IN>
16+
- Windows SDK version: <PLEASE FILL IN>
17+
- Vulkan SDK version: <PLEASE FILL IN>
18+
- CMake version: <PLEASE FILL IN>
19+
- Visual Studio version: <PLEASE FILL IN>
20+
- CPU: <PLEASE FILL IN>
21+
- GPU: <PLEASE FILL IN>
22+
- GPU driver version: <PLEASE FILL IN>
23+
24+
## Relevant logs or screenshots
25+
(Paste any relevant logs or screenshots to help diagnose and reproduce the performance issue)
26+
27+
/label ~performance-issue

.gitlab/issue_templates/UX issue.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## FidelityFX SDK UX Issue
2+
(Which SDK sample project or component has a UX issue)
3+
4+
## UX issue description
5+
(Describe in as much detail what constitutes the UX issue, including as much descriptive information as possible)
6+
7+
(This issue category is primarily for UI/UX usabity issues in samples, such as UI being hard to use, read or understand, despite it operating correctly)
8+
9+
## What built the sample project or component
10+
11+
- [ ] code was built locally
12+
- [ ] code was built by CI
13+
14+
(If the code was built by CI, please insert a link to the CI job here)
15+
16+
## System setup
17+
- Windows version: <PLEASE FILL IN>
18+
- Windows SDK version: <PLEASE FILL IN>
19+
- Vulkan SDK version: <PLEASE FILL IN>
20+
- CMake version: <PLEASE FILL IN>
21+
- Visual Studio version: <PLEASE FILL IN>
22+
- CPU: <PLEASE FILL IN>
23+
- GPU: <PLEASE FILL IN>
24+
- GPU driver version: <PLEASE FILL IN>
25+
26+
## Relevant logs or screenshots
27+
(Paste any relevant logs or screenshots to help diagnose and reproduce the UX issue)
28+
29+
/label ~ux-issue
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
## FidelityFX SDK Visual Issue
2+
(Which SDK sample project or component has a visual issue)
3+
4+
## Visual issue description
5+
(Describe in as much detail what constitutes the visual issue, including as much descriptive information as possible)
6+
7+
## What built the sample project or component
8+
9+
- [ ] code was built locally
10+
- [ ] code was built by CI
11+
12+
(If the code was built by CI, please insert a link to the CI job here)
13+
14+
## System setup
15+
- Windows version: <PLEASE FILL IN>
16+
- Windows SDK version: <PLEASE FILL IN>
17+
- Vulkan SDK version: <PLEASE FILL IN>
18+
- CMake version: <PLEASE FILL IN>
19+
- Visual Studio version: <PLEASE FILL IN>
20+
- CPU: <PLEASE FILL IN>
21+
- GPU: <PLEASE FILL IN>
22+
- GPU driver version: <PLEASE FILL IN>
23+
24+
## Relevant logs or screenshots
25+
(Paste any relevant logs or screenshots to help diagnose the visual issue)
26+
27+
/label ~visual-issue ~qa-report
24 KB
Binary file not shown.
14 KB
Binary file not shown.

0 commit comments

Comments
 (0)