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
|
|
|
|
*/
|
|
|
|
|
|
|
|
import "dxgi.idl";
|
|
|
|
|
2009-01-19 10:39:05 +01:00
|
|
|
[
|
|
|
|
object,
|
|
|
|
local,
|
|
|
|
uuid(3e1ff30b-c951-48c3-b010-0fb49f3dca71)
|
|
|
|
]
|
|
|
|
interface IWineDXGIDevice : IDXGIDevice
|
|
|
|
{
|
2009-01-19 10:39:06 +01:00
|
|
|
HRESULT create_surface(
|
2015-08-06 00:21:57 +02:00
|
|
|
[in] struct wined3d_resource *wined3d_resource,
|
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,
|
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();
|
|
|
|
}
|