d3d10core: Add a test for D3D10CoreCreateDevice().
[wine/testsucceed.git] / dlls / d3d10core / tests / device.c
blob8a012224cffec2dfba3717b8a1b91a5d9380ba2e
1 /*
2 * Copyright 2008 Henri Verbeet for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #define COBJMACROS
20 #include "initguid.h"
21 #include "d3d10.h"
22 #include "wine/test.h"
24 HRESULT WINAPI D3D10CoreCreateDevice(IDXGIFactory *factory, IDXGIAdapter *adapter,
25 UINT flags, DWORD unknown0, ID3D10Device **device);
27 static ID3D10Device *create_device(void)
29 IDXGIFactory *factory = NULL;
30 IDXGIAdapter *adapter = NULL;
31 ID3D10Device *device = NULL;
32 HRESULT hr;
34 hr = CreateDXGIFactory(&IID_IDXGIFactory, (void *)&factory);
35 ok(SUCCEEDED(hr), "CreateDXGIFactory failed, hr %#x\n", hr);
36 if (FAILED(hr)) goto cleanup;
38 hr = IDXGIFactory_EnumAdapters(factory, 0, &adapter);
39 ok(SUCCEEDED(hr), "EnumAdapters failed, hr %#x\n", hr);
40 if (FAILED(hr)) goto cleanup;
42 hr = D3D10CoreCreateDevice(factory, adapter, 0, 0, &device);
43 if (FAILED(hr))
45 HMODULE d3d10ref;
47 trace("Failed to create a HW device, trying REF\n");
48 IDXGIAdapter_Release(adapter);
49 adapter = NULL;
51 d3d10ref = LoadLibraryA("d3d10ref.dll");
52 if (!d3d10ref)
54 trace("d3d10ref.dll not available, unable to create a REF device\n");
55 goto cleanup;
58 hr = IDXGIFactory_CreateSoftwareAdapter(factory, d3d10ref, &adapter);
59 FreeLibrary(d3d10ref);
60 ok(SUCCEEDED(hr), "CreateSoftwareAdapter failed, hr %#x\n", hr);
61 if (FAILED(hr)) goto cleanup;
63 hr = D3D10CoreCreateDevice(factory, adapter, 0, 0, &device);
64 ok(SUCCEEDED(hr), "Failed to create a REF device, hr %#x\n", hr);
65 if (FAILED(hr)) goto cleanup;
68 cleanup:
69 if (adapter) IDXGIAdapter_Release(adapter);
70 if (factory) IDXGIFactory_Release(factory);
72 return device;
75 static void test_device_interfaces(ID3D10Device *device)
77 IUnknown *obj;
78 HRESULT hr;
80 if (SUCCEEDED(hr = ID3D10Device_QueryInterface(device, &IID_IUnknown, (void **)&obj)))
81 IUnknown_Release(obj);
82 ok(SUCCEEDED(hr), "ID3D10Device does not implement IUnknown\n");
84 if (SUCCEEDED(hr = ID3D10Device_QueryInterface(device, &IID_IDXGIObject, (void **)&obj)))
85 IUnknown_Release(obj);
86 ok(SUCCEEDED(hr), "ID3D10Device does not implement IDXGIObject\n");
88 if (SUCCEEDED(hr = ID3D10Device_QueryInterface(device, &IID_IDXGIDevice, (void **)&obj)))
89 IUnknown_Release(obj);
90 ok(SUCCEEDED(hr), "ID3D10Device does not implement IDXGIDevice\n");
92 if (SUCCEEDED(hr = ID3D10Device_QueryInterface(device, &IID_ID3D10Device, (void **)&obj)))
93 IUnknown_Release(obj);
94 ok(SUCCEEDED(hr), "ID3D10Device does not implement ID3D10Device\n");
97 START_TEST(device)
99 ID3D10Device *device;
100 ULONG refcount;
102 device = create_device();
103 if (!device)
105 skip("Failed to create device, skipping tests\n");
106 return;
109 test_device_interfaces(device);
111 refcount = ID3D10Device_Release(device);
112 ok(!refcount, "Device has %u references left\n", refcount);