st/nine: Ignore pDirtyRegion

We supported it, but it's not much useful.
Besides it gets more complicated to handle right when
you support resizing before display.

Signed-off-by: Axel Davy <davyaxel0@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5015>
This commit is contained in:
Axel Davy 2020-05-09 13:18:42 +02:00 committed by Marge Bot
parent 1c474dde28
commit dbb0825570
1 changed files with 5 additions and 1 deletions

View File

@ -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; }
}