mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
Update blurhash
This commit is contained in:
parent
b05c101021
commit
c2f2e8324c
1 changed files with 4 additions and 3 deletions
3
third_party/blurhash/blurhash.cpp
vendored
3
third_party/blurhash/blurhash.cpp
vendored
|
@ -260,6 +260,7 @@ decode(std::string_view blurhash, size_t width, size_t height, size_t bytesPerPi
|
||||||
|
|
||||||
Components components{};
|
Components components{};
|
||||||
std::vector<Color> values;
|
std::vector<Color> values;
|
||||||
|
values.reserve(blurhash.size() / 2);
|
||||||
try {
|
try {
|
||||||
components = unpackComponents(decode83(blurhash.substr(0, 1)));
|
components = unpackComponents(decode83(blurhash.substr(0, 1)));
|
||||||
|
|
||||||
|
@ -277,7 +278,7 @@ decode(std::string_view blurhash, size_t width, size_t height, size_t bytesPerPi
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
i.image.reserve(height * width * 3);
|
i.image.reserve(height * width * bytesPerPixel);
|
||||||
|
|
||||||
for (size_t y = 0; y < height; y++) {
|
for (size_t y = 0; y < height; y++) {
|
||||||
for (size_t x = 0; x < width; x++) {
|
for (size_t x = 0; x < width; x++) {
|
||||||
|
|
Loading…
Reference in a new issue