aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/vk/GrVkCaps.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/vk/GrVkCaps.cpp')
-rw-r--r--src/gpu/vk/GrVkCaps.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/gpu/vk/GrVkCaps.cpp b/src/gpu/vk/GrVkCaps.cpp
index 83546da5c4..aa93f2e561 100644
--- a/src/gpu/vk/GrVkCaps.cpp
+++ b/src/gpu/vk/GrVkCaps.cpp
@@ -131,6 +131,10 @@ void GrVkCaps::applyDriverCorrectnessWorkarounds(const VkPhysicalDevicePropertie
fNewCBOnPipelineChange = true;
}
+ if (kIntel_VkVendor == properties.vendorID) {
+ fCanUseWholeSizeOnFlushMappedMemory = false;
+ }
+
////////////////////////////////////////////////////////////////////////////
// GrCaps workarounds
////////////////////////////////////////////////////////////////////////////
@@ -144,8 +148,14 @@ void GrVkCaps::applyDriverCorrectnessWorkarounds(const VkPhysicalDevicePropertie
fMaxVertexAttributes = SkTMin(fMaxVertexAttributes, 32);
}
- if (kIntel_VkVendor == properties.vendorID) {
- fCanUseWholeSizeOnFlushMappedMemory = false;
+ if (kQualcomm_VkVendor == properties.vendorID) {
+ // http://skbug.com/7758 -- the bots have a rendering issue related to the MSAA path
+ // renderer. It doesn't repro locally, and there doesn't seem to be a correlation between it
+ // and the driver version. Blacklisting across-the-board for now.
+ //
+ // properties.driverVersion=93622907, Android 8.1 -> no repro
+ // properties.driverVersion=159578699, Android 8.0 -> repros
+ fBlacklistMSAAPathRenderer = true;
}
////////////////////////////////////////////////////////////////////////////