MCI boot fix (android): skipping problematic initial pair of dispatches

This commit is contained in:
xbzk
2025-12-12 01:23:06 -03:00
committed by crueter
parent a701ea274f
commit 09f06a9a41

View File

@@ -479,6 +479,14 @@ void RasterizerVulkan::Clear(u32 layer_count) {
}
void RasterizerVulkan::DispatchCompute() {
#ifdef ANDROID
static u32 dispatch_count = 0;
if (dispatch_count < 2) {
dispatch_count++;
return;
}
#endif
FlushWork();
gpu_memory->FlushCaching();