mirror of https://github.com/xemu-project/xemu.git
nv2a: Force surface flush for mipmapped textures
This commit is contained in:
parent
0c2368f37d
commit
5cc4568dfe
|
@ -3743,6 +3743,11 @@ static bool pgraph_check_surface_to_texture_compatibility(
|
|||
return false;
|
||||
}
|
||||
|
||||
if (shape->levels > 1) {
|
||||
// FIXME: Support rendering surface to mip levels
|
||||
return false;
|
||||
}
|
||||
|
||||
switch (surface_fmt) {
|
||||
case NV097_SET_SURFACE_FORMAT_COLOR_LE_X1R5G5B5_Z1R5G5B5:
|
||||
switch (texture_fmt) {
|
||||
|
|
Loading…
Reference in New Issue