Android: When using the hardware scaler, round the size to divisible by 4. Might help #11151

This commit is contained in:
Henrik Rydgård 2018-08-26 19:26:54 +02:00
parent 61eb331bad
commit 3c5b2d69f6

View file

@ -871,6 +871,11 @@ void getDesiredBackbufferSize(int &sz_x, int &sz_y) {
sz_x = 0;
sz_y = 0;
}
// Round the size up to the nearest multiple of 4. While this may cause a tiny aspect ratio distortion,
// there's some hope that #11151 is a driver bug that might be worked around this way. If this fixes it,
// it'll be worth trying to round to a multiple of 2 instead.
sz_x = (sz_x + 3) & ~3;
sz_y = (sz_y + 3) & ~3;
}
extern "C" void JNICALL Java_org_ppsspp_ppsspp_NativeApp_setDisplayParameters(JNIEnv *, jclass, jint xres, jint yres, jint dpi, jfloat refreshRate) {