diff options
author | Ameer J <52414509+ameerj@users.noreply.github.com> | 2023-08-02 02:11:01 +0200 |
---|---|---|
committer | Ameer J <52414509+ameerj@users.noreply.github.com> | 2023-08-06 20:54:57 +0200 |
commit | 6b0b584eba111dfd716990b62499c307c930f555 (patch) | |
tree | f4b97703976421cdbc1069747a2a6a647aff5e29 /src/video_core | |
parent | amd opts (diff) | |
download | yuzu-6b0b584eba111dfd716990b62499c307c930f555.tar yuzu-6b0b584eba111dfd716990b62499c307c930f555.tar.gz yuzu-6b0b584eba111dfd716990b62499c307c930f555.tar.bz2 yuzu-6b0b584eba111dfd716990b62499c307c930f555.tar.lz yuzu-6b0b584eba111dfd716990b62499c307c930f555.tar.xz yuzu-6b0b584eba111dfd716990b62499c307c930f555.tar.zst yuzu-6b0b584eba111dfd716990b62499c307c930f555.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/host_shaders/astc_decoder.comp | 2 |
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; #define VECTOR_ARRAY_SIZE DIVCEIL(ARRAY_NUM_ELEMENTS * 2, 4) uvec4 result_vector[VECTOR_ARRAY_SIZE]; -int result_index = 0; +uint result_index = 0; uint result_vector_max_index; bool result_limit_reached = false; |