mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-20 14:07:48 +00:00
gl_texture_cache: Avoid format views on Intel and AMD
Intel and AMD proprietary drivers are incapable of rendering to texture views of different formats than the original texture. Avoid creating these at a cache level. This will consume more memory, emulating them with copies.
This commit is contained in:
parent
77e7412d3e
commit
d8569c3af4
11 changed files with 48 additions and 21 deletions
|
@ -104,6 +104,11 @@ struct TextureCacheRuntime {
|
|||
}
|
||||
|
||||
void InsertUploadMemoryBarrier() {}
|
||||
|
||||
bool HasBrokenTextureViewFormats() const noexcept {
|
||||
// No known Vulkan driver has broken image views
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
class Image : public VideoCommon::ImageBase {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue