mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-18 09:37:56 +00:00
renderer_vulkan: Implement MSAA copies
This commit is contained in:
parent
8936ff8f89
commit
5529df01e3
5 changed files with 219 additions and 32 deletions
|
@ -324,6 +324,11 @@ public:
|
|||
return features.shader_float16_int8.shaderInt8;
|
||||
}
|
||||
|
||||
/// Returns true if the device supports binding multisample images as storage images.
|
||||
bool IsStorageImageMultisampleSupported() const {
|
||||
return features.features.shaderStorageImageMultisample;
|
||||
}
|
||||
|
||||
/// Returns true if the device warp size can potentially be bigger than guest's warp size.
|
||||
bool IsWarpSizePotentiallyBiggerThanGuest() const {
|
||||
return is_warp_potentially_bigger;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue