Compare commits

...

6 commits

Author SHA1 Message Date
kd-11 5331709fc5
Merge fd9da517f2 into 133b19f205 2025-12-03 23:22:02 +01:00
Elad fd9da517f2
Merge branch 'master' into misc-fixes 2025-11-29 19:07:43 +02:00
Elad 485571004f
Merge branch 'master' into misc-fixes 2025-11-29 11:26:16 +02:00
kd-11 13c7f2af7b
Merge branch 'master' into misc-fixes 2025-11-29 09:47:27 +03:00
kd-11 d0ce00a09d vk: Disable FBO loops extension support for AMD drivers 2025-11-29 03:17:35 +03:00
kd-11 b7740a2646 rsx: Fixup whitespace 2025-11-29 00:43:35 +03:00
2 changed files with 40 additions and 42 deletions

View file

@ -93,9 +93,9 @@ namespace rsx
// Move last 32 bits
reinterpret_cast<u32*>(dst)[0] = reinterpret_cast<const u32*>(src)[count - 1];
RSX(ctx)->invalidate_fragment_program(dst_dma, dst_offset, 4);
return;
}
else
{
if (dst_dma & CELL_GCM_LOCATION_MAIN)
{
// May overlap
@ -108,8 +108,6 @@ namespace rsx
}
RSX(ctx)->invalidate_fragment_program(dst_dma, dst_offset, count * 4);
}
break;
}
case blit_engine::transfer_destination_format::r5g6b5:

View file

@ -99,7 +99,7 @@ namespace vk
multidraw_support.max_batch_size = 65536;
optional_features_support.barycentric_coords = !!shader_barycentric_info.fragmentShaderBarycentric;
optional_features_support.framebuffer_loops = !!fbo_loops_info.attachmentFeedbackLoopLayout;
optional_features_support.framebuffer_loops = !!fbo_loops_info.attachmentFeedbackLoopLayout && get_driver_vendor() != driver_vendor::AMD;
optional_features_support.extended_device_fault = !!device_fault_info.deviceFault;
features = features2.features;