[PATCH] wined3d: Add FIXME for WINED3D_BLT_WAIT.

Andrey Gusev andrey.goosev at gmail.com
Tue Jan 10 08:02:05 CST 2017


Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/wined3d/surface.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/dlls/wined3d/surface.c b/dlls/wined3d/surface.c
index 18b008c..e8b0973 100644
--- a/dlls/wined3d/surface.c
+++ b/dlls/wined3d/surface.c
@@ -4028,7 +4028,13 @@ HRESULT wined3d_surface_blt(struct wined3d_surface *dst_surface, const RECT *dst
         flags &= ~WINED3D_BLT_FX;
 
     if (flags & WINED3D_BLT_WAIT)
+    {
+        static unsigned int once;
+
+        if (!once++)
+            FIXME("Can't handle WINED3D_BLT_WAIT flag.\n");
         flags &= ~WINED3D_BLT_WAIT;
+    }
 
     if (flags & WINED3D_BLT_ASYNC)
     {
-- 
2.7.4




More information about the wine-patches mailing list