summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2021-01-15 06:17:47 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2021-01-15 06:24:36 +0100
commit22be115eb23ad755acdc113447ad94421a05b46c (patch)
tree6b7c5a3829a0f1c407e22343b0191ec83b4d8776
parentastc: Return zero on out of bound bits (diff)
downloadyuzu-22be115eb23ad755acdc113447ad94421a05b46c.tar
yuzu-22be115eb23ad755acdc113447ad94421a05b46c.tar.gz
yuzu-22be115eb23ad755acdc113447ad94421a05b46c.tar.bz2
yuzu-22be115eb23ad755acdc113447ad94421a05b46c.tar.lz
yuzu-22be115eb23ad755acdc113447ad94421a05b46c.tar.xz
yuzu-22be115eb23ad755acdc113447ad94421a05b46c.tar.zst
yuzu-22be115eb23ad755acdc113447ad94421a05b46c.zip
-rw-r--r--src/video_core/textures/astc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/textures/astc.cpp b/src/video_core/textures/astc.cpp
index 1f1c3bd3a..3625b666c 100644
--- a/src/video_core/textures/astc.cpp
+++ b/src/video_core/textures/astc.cpp
@@ -197,7 +197,7 @@ struct IntegerEncodedValue {
};
};
using IntegerEncodedVector = boost::container::static_vector<
- IntegerEncodedValue, 64,
+ IntegerEncodedValue, 256,
boost::container::static_vector_options<
boost::container::inplace_alignment<alignof(IntegerEncodedValue)>,
boost::container::throw_on_overflow<false>>::type>;