diff options
-rw-r--r-- | src/gallium/frontends/nine/swapchain9.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/frontends/nine/swapchain9.c b/src/gallium/frontends/nine/swapchain9.c index b9578b54600..dab6ba6aa29 100644 --- a/src/gallium/frontends/nine/swapchain9.c +++ b/src/gallium/frontends/nine/swapchain9.c @@ -733,6 +733,10 @@ present( struct NineSwapChain9 *This, This, pSourceRect, pDestRect, pDirtyRegion, hDestWindowOverride, (int)dwFlags, This->buffers[0]->base.resource); + /* We can choose to only update pDirtyRegion, but the backend can choose + * to update everything. Let's ignore */ + (void) pDirtyRegion; + if (pSourceRect) { DBG("pSourceRect = (%u..%u)x(%u..%u)\n", pSourceRect->left, pSourceRect->right, @@ -921,7 +925,7 @@ bypass_rendering: if (!This->enable_threadpool) { This->tasks[0]=NULL; - hr = ID3DPresent_PresentBuffer(This->present, This->present_handles[0], hDestWindowOverride, pSourceRect, pDestRect ? &dest_rect : NULL, pDirtyRegion, dwFlags); + hr = ID3DPresent_PresentBuffer(This->present, This->present_handles[0], hDestWindowOverride, pSourceRect, pDestRect ? &dest_rect : NULL, NULL, dwFlags); if (FAILED(hr)) { UNTESTED(3);return hr; } } |