diff options
| author | 2023-08-01 20:52:17 -0400 | |
|---|---|---|
| committer | 2023-08-06 14:54:57 -0400 | |
| commit | f2cf81e0b69652bec91857fd6d447e0e4ea137b7 (patch) | |
| tree | 6ae5e2fb18f3f6916b8220e6c0debdbd7c3ddeb2 /src/video_core/host_shaders | |
| parent | Revert "bfe instead of mod" (diff) | |
| download | yuzu-f2cf81e0b69652bec91857fd6d447e0e4ea137b7.tar.gz yuzu-f2cf81e0b69652bec91857fd6d447e0e4ea137b7.tar.xz yuzu-f2cf81e0b69652bec91857fd6d447e0e4ea137b7.zip | |
Revert "uint result index"
This reverts commit 0e978786b5a8e7382005d8b1e16cfa12f3eeb775.
Diffstat (limited to 'src/video_core/host_shaders')
| -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 fd38dcfe5..ca93dc2a2 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) |
| 89 | uvec4 result_vector[VECTOR_ARRAY_SIZE]; | 89 | uvec4 result_vector[VECTOR_ARRAY_SIZE]; |
| 90 | 90 | ||
| 91 | uint result_index = 0; | 91 | int result_index = 0; |
| 92 | uint result_vector_max_index; | 92 | uint result_vector_max_index; |
| 93 | bool result_limit_reached = false; | 93 | bool result_limit_reached = false; |
| 94 | 94 | ||