=?UTF-8?Q?J=C3=B3zef=20Kucia=20?=: d3d8: Validate presentation interval.

Alexandre Julliard julliard at winehq.org
Mon Mar 12 17:40:24 CDT 2018


Module: wine
Branch: master
Commit: 93e7878cb41a29530ee49246f7c5332b4a8d93a9
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=93e7878cb41a29530ee49246f7c5332b4a8d93a9

Author: Józef Kucia <jkucia at codeweavers.com>
Date:   Mon Mar 12 13:53:49 2018 +0100

d3d8: Validate presentation interval.

Signed-off-by: Józef Kucia <jkucia at codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/d3d8/device.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/dlls/d3d8/device.c b/dlls/d3d8/device.c
index 5624d76..17e02a3 100644
--- a/dlls/d3d8/device.c
+++ b/dlls/d3d8/device.c
@@ -304,6 +304,20 @@ static BOOL wined3d_swapchain_desc_from_present_parameters(struct wined3d_swapch
         WARN("Invalid backbuffer count %u.\n", present_parameters->BackBufferCount);
         return FALSE;
     }
+    switch (present_parameters->FullScreen_PresentationInterval)
+    {
+        case D3DPRESENT_INTERVAL_DEFAULT:
+        case D3DPRESENT_INTERVAL_ONE:
+        case D3DPRESENT_INTERVAL_TWO:
+        case D3DPRESENT_INTERVAL_THREE:
+        case D3DPRESENT_INTERVAL_FOUR:
+        case D3DPRESENT_INTERVAL_IMMEDIATE:
+            break;
+        default:
+            WARN("Invalid presentation interval %#x.\n",
+                    present_parameters->FullScreen_PresentationInterval);
+            return FALSE;
+    }
 
     swapchain_desc->backbuffer_width = present_parameters->BackBufferWidth;
     swapchain_desc->backbuffer_height = present_parameters->BackBufferHeight;




More information about the wine-cvs mailing list