/* * Copyright 2007 Andras Kovacs * * 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 "dxgitype.idl"; cpp_quote("#if 0") typedef HANDLE HMONITOR; cpp_quote("#endif") typedef struct DXGI_SURFACE_DESC { UINT Width; UINT Height; DXGI_FORMAT Format; DXGI_SAMPLE_DESC SampleDesc; } DXGI_SURFACE_DESC; typedef struct DXGI_MAPPED_RECT { INT Pitch; BYTE *pBits; } DXGI_MAPPED_RECT; typedef struct DXGI_OUTPUT_DESC { WCHAR DeviceName[32]; RECT DesktopCoordinates; BOOL AttachedToDesktop; DXGI_MODE_ROTATION Rotation; HMONITOR Monitor; } DXGI_OUTPUT_DESC; typedef struct DXGI_FRAME_STATISTICS { UINT PresentCount; UINT PresentRefreshCount; UINT SyncRefreshCount; LARGE_INTEGER SyncQPCTime; LARGE_INTEGER SyncGPUTime; } DXGI_FRAME_STATISTICS; [ object, local, uuid(aec22fb8-76f3-4639-9be0-28eb43a67a2e) ] interface IDXGIObject : IUnknown { HRESULT SetPrivateData( [in] REFGUID guid, [in] UINT data_size, [in] const void *data ); HRESULT SetPrivateDataInterface( [in] REFGUID guid, [in] const IUnknown *object ); HRESULT GetPrivateData( [in] REFGUID guid, [in, out] UINT data_size, [out] void *data ); HRESULT GetParent( [in] REFIID riid, [out] void **parent ); } [ object, local, uuid(3d3e0379-f9de-4d58-bb6c-18d62992f1a6) ] interface IDXGIDeviceSubObject : IDXGIObject { HRESULT GetDevice( [in] REFIID riid, [out] void **device ); } [ object, local, uuid(cafcb56c-6ac3-4889-bf47-9e23bbd260ec) ] interface IDXGISurface : IDXGIDeviceSubObject { HRESULT GetDesc( [out] DXGI_SURFACE_DESC *desc ); HRESULT Map( [out] DXGI_MAPPED_RECT *mapped_rect, [in] UINT flags ); HRESULT Unmap( ); } [ object, local, uuid(ae02eedb-c735-4690-8d52-5a8dc20213aa) ] interface IDXGIOutput : IDXGIObject { HRESULT GetDesc( [out] DXGI_OUTPUT_DESC *desc ); HRESULT GetDisplayModeList( [in] DXGI_FORMAT format, [in] UINT flags, [in, out] UINT *mode_count, [out] DXGI_MODE_DESC *desc ); HRESULT FindClosestMatchingMode( [in] const DXGI_MODE_DESC *mode, [out] DXGI_MODE_DESC *closest_match, [in] IUnknown *device ); HRESULT WaitForVBlank( ); HRESULT TakeOwnership( [in] IUnknown *device, [in] BOOL exclusive ); void ReleaseOwnership( ); HRESULT GetGammaControlCapabilities( [out] DXGI_GAMMA_CONTROL_CAPABILITIES *gamma_caps ); HRESULT SetGammaControl( [in] const DXGI_GAMMA_CONTROL *gamma_control ); HRESULT GetGammaControl( [out] DXGI_GAMMA_CONTROL *gamma_control ); HRESULT SetDisplaySurface( [in] IDXGISurface *surface ); HRESULT GetDisplaySurfaceData( [in] IDXGISurface *surface ); HRESULT GetFrameStatistics( [out] DXGI_FRAME_STATISTICS *stats ); }