Fix regs regression with OpenGL two-sided stencil, and re-add data invalidation reg

This commit is contained in:
Kelebek1
2022-11-11 03:24:03 +00:00
parent c9bb888adf
commit 33ea0fdfe8
6 changed files with 32 additions and 5 deletions

View File

@ -249,6 +249,11 @@ void Maxwell3D::ProcessMethodCall(u32 method, u32 argument, u32 nonshadow_argume
return;
case MAXWELL3D_REG_INDEX(fragment_barrier):
return rasterizer->FragmentBarrier();
case MAXWELL3D_REG_INDEX(invalidate_texture_data_cache):
rasterizer->InvalidateGPUCache();
return rasterizer->WaitForIdle();
case MAXWELL3D_REG_INDEX(tiled_cache_barrier):
return rasterizer->TiledCacheBarrier();
}
}