Skip to content
Snippets Groups Projects
Unverified Commit 5f945e2f authored by liamwhite's avatar liamwhite Committed by GitHub
Browse files

Merge pull request #12036 from FernandoS27/you-should-have-more-than-one-towel

Query Cache: Disable write syncing on Android
parents c08da2d6 c9437e52
No related branches found
No related tags found
No related merge requests found
...@@ -211,6 +211,13 @@ public: ...@@ -211,6 +211,13 @@ public:
return; return;
} }
PauseCounter(); PauseCounter();
const auto driver_id = device.GetDriverID();
if (driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY ||
driver_id == VK_DRIVER_ID_ARM_PROPRIETARY || driver_id == VK_DRIVER_ID_MESA_TURNIP) {
pending_sync.clear();
sync_values_stash.clear();
return;
}
sync_values_stash.clear(); sync_values_stash.clear();
sync_values_stash.emplace_back(); sync_values_stash.emplace_back();
std::vector<HostSyncValues>* sync_values = &sync_values_stash.back(); std::vector<HostSyncValues>* sync_values = &sync_values_stash.back();
...@@ -1378,6 +1385,12 @@ bool QueryCacheRuntime::HostConditionalRenderingCompareValues(VideoCommon::Looku ...@@ -1378,6 +1385,12 @@ bool QueryCacheRuntime::HostConditionalRenderingCompareValues(VideoCommon::Looku
return true; return true;
} }
auto driver_id = impl->device.GetDriverID();
if (driver_id == VK_DRIVER_ID_QUALCOMM_PROPRIETARY ||
driver_id == VK_DRIVER_ID_ARM_PROPRIETARY || driver_id == VK_DRIVER_ID_MESA_TURNIP) {
return true;
}
for (size_t i = 0; i < 2; i++) { for (size_t i = 0; i < 2; i++) {
is_null[i] = !is_in_ac[i] && check_value(objects[i]->address); is_null[i] = !is_in_ac[i] && check_value(objects[i]->address);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment