summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2024-02-10 22:42:25 -0500
committerGitHub <noreply@github.com>2024-02-10 22:42:25 -0500
commit999ec5739d9d788bd85f4715f0be9c2ba5f79d7a (patch)
treeae537052a6d4c9f3ee64c311a885428916029e5e /src
parent2337397a1530e2d0cd6cab4bd22517747b80de6c (diff)
parent4eeac731ff7d0a4b2b47ef95e9b4efdfe8e277bf (diff)
Merge pull request #12978 from liamwhite/ffs-qcom
host_shaders: add vendor workaround for adreno drivers
Diffstat (limited to 'src')
-rw-r--r--src/video_core/host_shaders/vulkan_present.vert10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/video_core/host_shaders/vulkan_present.vert b/src/video_core/host_shaders/vulkan_present.vert
index 249c9675a..c0e6e8537 100644
--- a/src/video_core/host_shaders/vulkan_present.vert
+++ b/src/video_core/host_shaders/vulkan_present.vert
@@ -19,15 +19,13 @@ layout (push_constant) uniform PushConstants {
// Any member of a push constant block that is declared as an
// array must only be accessed with dynamically uniform indices.
ScreenRectVertex GetVertex(int index) {
- switch (index) {
- case 0:
- default:
+ if (index < 1) {
return vertices[0];
- case 1:
+ } else if (index < 2) {
return vertices[1];
- case 2:
+ } else if (index < 3) {
return vertices[2];
- case 3:
+ } else {
return vertices[3];
}
}