2008-11-12 12:04:24 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Henri Verbeet for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
#include "wine/debug.h"
|
2008-11-12 12:04:24 +01:00
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
#include "initguid.h"
|
2008-11-12 12:04:24 +01:00
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
#define COBJMACROS
|
|
|
|
#include "d3d10_1.h"
|
|
|
|
#include "d3d11.h"
|
2008-11-12 15:43:46 +01:00
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(d3d10core);
|
2008-11-12 15:43:46 +01:00
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
HRESULT WINAPI D3D11CoreCreateDevice(IDXGIFactory *factory, IDXGIAdapter *adapter, UINT flags,
|
|
|
|
const D3D_FEATURE_LEVEL *feature_levels, UINT levels, ID3D11Device **device);
|
2008-11-12 15:43:46 +01:00
|
|
|
|
|
|
|
HRESULT WINAPI D3D10CoreRegisterLayers(void)
|
|
|
|
{
|
2015-08-21 00:07:53 +02:00
|
|
|
TRACE("\n");
|
2008-11-12 15:43:46 +01:00
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
return E_NOTIMPL;
|
2008-11-12 15:43:46 +01:00
|
|
|
}
|
2008-11-14 13:57:06 +01:00
|
|
|
|
|
|
|
HRESULT WINAPI D3D10CoreCreateDevice(IDXGIFactory *factory, IDXGIAdapter *adapter,
|
2009-12-07 20:20:03 +01:00
|
|
|
UINT flags, void *unknown0, ID3D10Device **device)
|
2008-11-14 13:57:06 +01:00
|
|
|
{
|
2015-08-21 00:07:53 +02:00
|
|
|
D3D_FEATURE_LEVEL feature_level = D3D_FEATURE_LEVEL_10_0;
|
|
|
|
ID3D11Device *device11;
|
2008-11-14 13:57:06 +01:00
|
|
|
HRESULT hr;
|
|
|
|
|
2009-12-07 20:20:03 +01:00
|
|
|
TRACE("factory %p, adapter %p, flags %#x, unknown0 %p, device %p.\n",
|
2008-11-17 12:16:03 +01:00
|
|
|
factory, adapter, flags, unknown0, device);
|
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
if (FAILED(hr = D3D11CoreCreateDevice(factory, adapter, flags, &feature_level, 1, &device11)))
|
|
|
|
return hr;
|
|
|
|
|
|
|
|
hr = ID3D11Device_QueryInterface(device11, &IID_ID3D10Device, (void **)device);
|
|
|
|
ID3D11Device_Release(device11);
|
2008-11-14 13:57:06 +01:00
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
2015-08-21 00:07:53 +02:00
|
|
|
ERR("Device should implement ID3D10Device, returning E_FAIL.\n");
|
|
|
|
return E_FAIL;
|
2008-11-14 13:57:06 +01:00
|
|
|
}
|
|
|
|
|
2015-08-21 00:07:53 +02:00
|
|
|
return S_OK;
|
2008-11-14 13:57:06 +01:00
|
|
|
}
|