53 lines
1.5 KiB
Plaintext
53 lines
1.5 KiB
Plaintext
/*
|
|
* Copyright 2008-2009 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
|
|
*/
|
|
|
|
#pragma makedep header
|
|
|
|
import "dxgi.idl";
|
|
|
|
[
|
|
object,
|
|
local,
|
|
uuid(3e1ff30b-c951-48c3-b010-0fb49f3dca71)
|
|
]
|
|
interface IWineDXGIDevice : IDXGIDevice1
|
|
{
|
|
HRESULT create_surface(
|
|
[in] struct wined3d_texture *wined3d_texture,
|
|
[in] DXGI_USAGE usage,
|
|
[in] const DXGI_SHARED_RESOURCE *shared_resource,
|
|
[in] IUnknown *outer,
|
|
[out] void **surface
|
|
);
|
|
HRESULT create_swapchain(
|
|
[in] struct wined3d_swapchain_desc *desc,
|
|
[in] BOOL implicit,
|
|
[out] struct wined3d_swapchain **wined3d_swapchain
|
|
);
|
|
}
|
|
|
|
[
|
|
object,
|
|
local,
|
|
uuid(f2b918f3-603f-430a-9ccd-55872b6e85df)
|
|
]
|
|
interface IWineDXGIDeviceParent : IUnknown
|
|
{
|
|
struct wined3d_device_parent *get_wined3d_device_parent();
|
|
}
|