Merge pull request #5288 from ReinUsesLisp/workaround-garbage

gl_texture_cache: Avoid format views on Intel and AMD
This commit is contained in:
Morph 2021-01-06 15:39:51 +08:00 committed by GitHub
commit e8d40559d5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 148 additions and 120 deletions

View file

@ -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 {