=?UTF-8?Q?J=C3=B3zef=20Kucia=20?=: d3d11: Rename d3d10_wined3d_device_parent_ops to d3d_wined3d_device_parent_ops.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Oct 13 10:53:47 CDT 2015


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

Author: Józef Kucia <jkucia at codeweavers.com>
Date:   Tue Oct 13 09:13:30 2015 +0200

d3d11: Rename d3d10_wined3d_device_parent_ops to d3d_wined3d_device_parent_ops.

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/device.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/d3d11/device.c b/dlls/d3d11/device.c
index db67f74..89b5d06 100644
--- a/dlls/d3d11/device.c
+++ b/dlls/d3d11/device.c
@@ -4084,7 +4084,7 @@ static HRESULT CDECL device_parent_create_swapchain(struct wined3d_device_parent
     return S_OK;
 }
 
-static const struct wined3d_device_parent_ops d3d10_wined3d_device_parent_ops =
+static const struct wined3d_device_parent_ops d3d_wined3d_device_parent_ops =
 {
     device_parent_wined3d_device_created,
     device_parent_mode_changed,
@@ -4182,7 +4182,7 @@ HRESULT d3d_device_init(struct d3d_device *device, void *outer_unknown)
     device->ID3D10Device1_iface.lpVtbl = &d3d10_device1_vtbl;
     device->ID3D10Multithread_iface.lpVtbl = &d3d10_multithread_vtbl;
     device->IWineDXGIDeviceParent_iface.lpVtbl = &d3d_dxgi_device_parent_vtbl;
-    device->device_parent.ops = &d3d10_wined3d_device_parent_ops;
+    device->device_parent.ops = &d3d_wined3d_device_parent_ops;
     device->refcount = 1;
     /* COM aggregation always takes place */
     device->outer_unk = outer_unknown;




More information about the wine-cvs mailing list