=?UTF-8?Q?J=C3=B3zef=20Kucia=20?=: d3d11: Handle D3D11_MAP_WRITE map type.

Alexandre Julliard julliard at winehq.org
Tue Jul 18 13:58:54 CDT 2017


Module: wine
Branch: master
Commit: dfc1b36afe561bdf8690380fe59b663029717840
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=dfc1b36afe561bdf8690380fe59b663029717840

Author: Józef Kucia <jkucia at codeweavers.com>
Date:   Tue Jul 18 00:17:20 2017 +0200

d3d11: Handle D3D11_MAP_WRITE map type.

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/d3d11/utils.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/d3d11/utils.c b/dlls/d3d11/utils.c
index b49177c..e919c58 100644
--- a/dlls/d3d11/utils.c
+++ b/dlls/d3d11/utils.c
@@ -647,6 +647,7 @@ DWORD wined3d_map_flags_from_d3d11_map_type(D3D11_MAP map_type)
 {
     switch (map_type)
     {
+        case D3D11_MAP_WRITE:
         case D3D11_MAP_READ_WRITE:
             return 0;
 




More information about the wine-cvs mailing list