Module: wine Branch: master Commit: c52a55d724f2e348717d2bb6e535a93c1bb49abe URL: http://source.winehq.org/git/wine.git/?a=commit;h=c52a55d724f2e348717d2bb6e5...
Author: Henri Verbeet hverbeet@codeweavers.com Date: Tue Oct 28 09:27:20 2008 +0100
wined3d: Fix some indentation.
---
dlls/wined3d/device.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index 737708f..6307950 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -1391,11 +1391,11 @@ static void WINAPI IWineD3DDeviceImpl_RestoreWindow(IWineD3DDevice *iface, HWND }
/* example at http://www.fairyengine.com/articles/dxmultiviews.htm */ -static HRESULT WINAPI IWineD3DDeviceImpl_CreateSwapChain(IWineD3DDevice* iface, WINED3DPRESENT_PARAMETERS* pPresentationParameters, IWineD3DSwapChain** ppSwapChain, - IUnknown* parent, - D3DCB_CREATERENDERTARGETFN D3DCB_CreateRenderTarget, - D3DCB_CREATEDEPTHSTENCILSURFACEFN D3DCB_CreateDepthStencil, - WINED3DSURFTYPE surface_type) { +static HRESULT WINAPI IWineD3DDeviceImpl_CreateSwapChain(IWineD3DDevice* iface, + WINED3DPRESENT_PARAMETERS* pPresentationParameters, IWineD3DSwapChain** ppSwapChain, + IUnknown* parent, D3DCB_CREATERENDERTARGETFN D3DCB_CreateRenderTarget, + D3DCB_CREATEDEPTHSTENCILSURFACEFN D3DCB_CreateDepthStencil, WINED3DSURFTYPE surface_type) +{ IWineD3DDeviceImpl *This = (IWineD3DDeviceImpl *)iface;
HDC hDc;