summaryrefslogtreecommitdiff
path: root/src/video_core/host_shaders
diff options
context:
space:
mode:
authorGravatar Ameer J2023-08-01 20:11:01 -0400
committerGravatar Ameer J2023-08-06 14:54:57 -0400
commit6b0b584eba111dfd716990b62499c307c930f555 (patch)
treef4b97703976421cdbc1069747a2a6a647aff5e29 /src/video_core/host_shaders
parentamd opts (diff)
downloadyuzu-6b0b584eba111dfd716990b62499c307c930f555.tar.gz
yuzu-6b0b584eba111dfd716990b62499c307c930f555.tar.xz
yuzu-6b0b584eba111dfd716990b62499c307c930f555.zip
uint result index
Diffstat (limited to 'src/video_core/host_shaders')
-rw-r--r--src/video_core/host_shaders/astc_decoder.comp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/host_shaders/astc_decoder.comp b/src/video_core/host_shaders/astc_decoder.comp
index ca93dc2a2..fd38dcfe5 100644
--- a/src/video_core/host_shaders/astc_decoder.comp
+++ b/src/video_core/host_shaders/astc_decoder.comp
@@ -88,7 +88,7 @@ int color_bitsread = 0;
88#define VECTOR_ARRAY_SIZE DIVCEIL(ARRAY_NUM_ELEMENTS * 2, 4) 88#define VECTOR_ARRAY_SIZE DIVCEIL(ARRAY_NUM_ELEMENTS * 2, 4)
89uvec4 result_vector[VECTOR_ARRAY_SIZE]; 89uvec4 result_vector[VECTOR_ARRAY_SIZE];
90 90
91int result_index = 0; 91uint result_index = 0;
92uint result_vector_max_index; 92uint result_vector_max_index;
93bool result_limit_reached = false; 93bool result_limit_reached = false;
94 94