Fixes size calcution in GlichPosteffect.

This commit is contained in:
falsycat 2021-08-28 10:45:25 +09:00
parent ec2e28c389
commit 8ef2e66318

View File

@ -27,16 +27,19 @@ class GlitchPosteffect : public iDrawable {
float* ptr = fb.ptr(); float* ptr = fb.ptr();
for (int32_t y = 0; y < h; ++y) { for (int32_t y = 0; y < h; ++y) {
const double shift = (XorShift(seed+y)%100/100.*2-1)*maxShift; if (XorShift(seed+y)%10 == 0) continue;
const int32_t s = static_cast<int32_t>(w*shift);
const double shift = (XorShift(seed+y+h)%100/100.*2-1)*maxShift;
if (std::abs(shift) > 1) continue; if (std::abs(shift) > 1) continue;
const size_t offset = static_cast<size_t>(y) * w; const int32_t s = static_cast<int32_t>(w*shift);
float* src = ptr + offset; const int32_t as = std::abs(s);
float* dst = ptr + offset + s;
if (src > dst) std::swap(src, dst);
std::memmove(dst, src, static_cast<size_t>(w) - std::abs(s)); float* src = ptr + static_cast<size_t>(y) * w;
float* dst = src + as;
if (s < 0) std::swap(src, dst);
std::memmove(dst, src, (static_cast<size_t>(w) - as)*sizeof(*ptr));
} }
} }