GPU: Remove Mesa + Vega hack.

This is not needed anymore with linux 4.15 + Mesa 17.3.3.
This commit is contained in:
2018-02-07 05:26:56 +01:00
parent 17577c53c6
commit 708ef19d88
4 changed files with 7 additions and 37 deletions

View File

@@ -602,18 +602,9 @@ void GPU_framebuffer_recursive_downsample(
current_dim[0] /= 2;
current_dim[1] /= 2;
if (GPU_type_matches(GPU_DEVICE_AMD_VEGA, GPU_OS_UNIX, GPU_DRIVER_OPENSOURCE)) {
/* NOTE : here 16 is because of a bug on AMD Vega GPU + non-pro drivers, that prevents us
* from sampling mipmaps that are smaller or equal to 16px. (9) */
if (current_dim[0] <= 16 && current_dim[1] <= 16) {
break;
}
}
else {
if (current_dim[0] <= 2 && current_dim[1] <= 2) {
/* Cannot reduce further. */
break;
}
if (current_dim[0] <= 2 && current_dim[1] <= 2) {
/* Cannot reduce further. */
break;
}
/* ensure that the viewport size is always at least 1x1 */