2008-11-17 12:16:04 +01:00
|
|
|
/*
|
2009-01-19 10:39:05 +01:00
|
|
|
* Copyright 2008-2009 Henri Verbeet for CodeWeavers
|
2008-11-17 12:16:04 +01:00
|
|
|
*
|
|
|
|
* 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-11-04 06:57:37 +01:00
|
|
|
#pragma makedep header
|
|
|
|
|
2018-10-24 07:22:02 +02:00
|
|
|
import "dxgi1_6.idl";
|
2008-11-17 12:16:04 +01:00
|
|
|
|
2018-12-04 15:22:00 +01:00
|
|
|
[
|
|
|
|
object,
|
|
|
|
local,
|
|
|
|
uuid(53cb4ff0-c25a-4164-a891-0e83db0a7aac)
|
|
|
|
]
|
|
|
|
interface IWineDXGISwapChainFactory : IUnknown
|
|
|
|
{
|
|
|
|
HRESULT create_swapchain(
|
|
|
|
[in] IDXGIFactory *factory,
|
|
|
|
[in] HWND window,
|
|
|
|
[in] const DXGI_SWAP_CHAIN_DESC1 *desc,
|
|
|
|
[in] const DXGI_SWAP_CHAIN_FULLSCREEN_DESC *fullscreen_desc,
|
|
|
|
[in] IDXGIOutput *output,
|
|
|
|
[out] IDXGISwapChain1 **swapchain
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2009-01-19 10:39:05 +01:00
|
|
|
[
|
|
|
|
object,
|
|
|
|
local,
|
|
|
|
uuid(3e1ff30b-c951-48c3-b010-0fb49f3dca71)
|
|
|
|
]
|
2018-05-01 07:21:18 +02:00
|
|
|
interface IWineDXGIDevice : IDXGIDevice2
|
2009-01-19 10:39:05 +01:00
|
|
|
{
|
2009-01-19 10:39:06 +01:00
|
|
|
HRESULT create_surface(
|
2016-09-01 11:42:54 +02:00
|
|
|
[in] struct wined3d_texture *wined3d_texture,
|
2009-01-19 10:39:06 +01:00
|
|
|
[in] DXGI_USAGE usage,
|
|
|
|
[in] const DXGI_SHARED_RESOURCE *shared_resource,
|
|
|
|
[in] IUnknown *outer,
|
|
|
|
[out] void **surface
|
|
|
|
);
|
2009-02-24 07:43:02 +01:00
|
|
|
HRESULT create_swapchain(
|
2011-12-02 08:15:52 +01:00
|
|
|
[in] struct wined3d_swapchain_desc *desc,
|
2016-04-12 12:29:38 +02:00
|
|
|
[in] BOOL implicit,
|
2011-04-13 19:14:31 +02:00
|
|
|
[out] struct wined3d_swapchain **wined3d_swapchain
|
2009-02-24 07:43:02 +01:00
|
|
|
);
|
2009-01-19 10:39:05 +01:00
|
|
|
}
|
2011-05-18 22:30:13 +02:00
|
|
|
|
|
|
|
[
|
|
|
|
object,
|
|
|
|
local,
|
|
|
|
uuid(f2b918f3-603f-430a-9ccd-55872b6e85df)
|
|
|
|
]
|
|
|
|
interface IWineDXGIDeviceParent : IUnknown
|
|
|
|
{
|
|
|
|
struct wined3d_device_parent *get_wined3d_device_parent();
|
|
|
|
}
|
2018-01-26 22:09:02 +01:00
|
|
|
|
2019-03-12 16:30:19 +01:00
|
|
|
struct wine_dxgi_adapter_info
|
|
|
|
{
|
|
|
|
GUID driver_uuid;
|
|
|
|
GUID device_uuid;
|
|
|
|
|
|
|
|
DWORD vendor_id;
|
|
|
|
DWORD device_id;
|
|
|
|
|
|
|
|
LUID luid;
|
|
|
|
};
|
|
|
|
|
2018-01-26 22:09:02 +01:00
|
|
|
[
|
|
|
|
object,
|
|
|
|
local,
|
|
|
|
uuid(17399d75-964e-4c03-99f8-9d4fd196dd62)
|
|
|
|
]
|
2018-10-24 07:22:02 +02:00
|
|
|
interface IWineDXGIAdapter : IDXGIAdapter4
|
2018-01-26 22:09:02 +01:00
|
|
|
{
|
2019-03-12 16:30:19 +01:00
|
|
|
HRESULT get_adapter_info([out] struct wine_dxgi_adapter_info *info);
|
2018-01-26 22:09:02 +01:00
|
|
|
}
|
2018-01-26 22:09:05 +01:00
|
|
|
|
|
|
|
[
|
|
|
|
object,
|
|
|
|
local,
|
|
|
|
uuid(ea02a0d1-4c95-488a-a82c-6034621e8c4f)
|
|
|
|
]
|
2018-02-14 12:35:49 +01:00
|
|
|
interface IWineDXGIFactory : IDXGIFactory5
|
2018-01-26 22:09:05 +01:00
|
|
|
{
|
|
|
|
}
|