1 /* DirectDrawGammaControl implementation
3 * Copyright 2001 TransGaming Technologies Inc.
4 * Copyright 2006 Stefan Dösinger
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "wine/port.h"
23 #include "wine/debug.h"
37 #include "wine/exception.h"
43 #include "ddraw_private.h"
45 WINE_DEFAULT_DEBUG_CHANNEL(ddraw);
46 WINE_DECLARE_DEBUG_CHANNEL(ddraw_thunk);
48 /**********************************************************
49 * IUnknown parts follow
50 **********************************************************/
52 /**********************************************************
53 * IDirectDrawGammaControl::QueryInterface
55 * QueryInterface, thunks to IDirectDrawSurface
58 * riid: Interface id queried for
59 * obj: Returns the interface pointer
62 * S_OK or E_NOINTERFACE: See IDirectDrawSurface7::QueryInterface
64 **********************************************************/
66 IDirectDrawGammaControlImpl_QueryInterface(IDirectDrawGammaControl *iface, REFIID riid,
69 ICOM_THIS_FROM(IDirectDrawSurfaceImpl, IDirectDrawGammaControl, iface);
70 TRACE_(ddraw_thunk)("(%p)->(%s,%p): Thunking to IDirectDrawSurface7\n", This, debugstr_guid(riid), obj);
72 return IDirectDrawSurface7_QueryInterface(ICOM_INTERFACE(This, IDirectDrawSurface7),
77 /**********************************************************
78 * IDirectDrawGammaControl::AddRef
80 * Addref, thunks to IDirectDrawSurface
85 **********************************************************/
87 IDirectDrawGammaControlImpl_AddRef(IDirectDrawGammaControl *iface)
89 ICOM_THIS_FROM(IDirectDrawSurfaceImpl, IDirectDrawGammaControl, iface);
90 TRACE_(ddraw_thunk)("(%p)->() Thunking to IDirectDrawSurface7\n", This);
92 return IDirectDrawSurface7_AddRef(ICOM_INTERFACE(This, IDirectDrawSurface7));
95 /**********************************************************
96 * IDirectDrawGammaControl::Release
98 * Release, thunks to IDirectDrawSurface
103 **********************************************************/
105 IDirectDrawGammaControlImpl_Release(IDirectDrawGammaControl *iface)
107 ICOM_THIS_FROM(IDirectDrawSurfaceImpl, IDirectDrawGammaControl, iface);
108 TRACE_(ddraw_thunk)("(%p)->() Thunking to IDirectDrawSurface7\n", This);
110 return IDirectDrawSurface7_Release(ICOM_INTERFACE(This, IDirectDrawSurface7));
113 /**********************************************************
114 * IDirectDrawGammaControl
115 **********************************************************/
117 /**********************************************************
118 * IDirectDrawGammaControl::GetGammaRamp
120 * Returns the current gamma ramp for a surface
124 * GammaRamp: Address to write the ramp to
128 * DDERR_INVALIDPARAMS if GammaRamp is NULL
130 **********************************************************/
131 static HRESULT WINAPI
132 IDirectDrawGammaControlImpl_GetGammaRamp(IDirectDrawGammaControl *iface,
134 DDGAMMARAMP *GammaRamp)
136 ICOM_THIS_FROM(IDirectDrawSurfaceImpl, IDirectDrawGammaControl, iface);
137 TRACE("(%p)->(%08lx,%p)\n", This,Flags,GammaRamp);
139 /* This looks sane */
142 ERR("(%p) GammaRamp is NULL, returning DDERR_INVALIDPARAMS\n", This);
143 return DDERR_INVALIDPARAMS;
146 if(This->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
148 /* This returns a void */
149 IWineD3DDevice_GetGammaRamp(This->ddraw->wineD3DDevice,
151 (WINED3DGAMMARAMP *) GammaRamp);
155 ERR("(%p) Unimplemented for non-primary surfaces\n", This);
161 /**********************************************************
162 * IDirectDrawGammaControl::SetGammaRamp
164 * Sets the red, green and blue gamma ramps for
167 * Flags: Can be DDSGR_CALIBRATE to request calibration
168 * GammaRamp: Structure containing the new gamma ramp
172 * DDERR_INVALIDPARAMS if GammaRamp is NULL
174 **********************************************************/
175 static HRESULT WINAPI
176 IDirectDrawGammaControlImpl_SetGammaRamp(IDirectDrawGammaControl *iface,
178 DDGAMMARAMP *GammaRamp)
180 ICOM_THIS_FROM(IDirectDrawSurfaceImpl, IDirectDrawGammaControl, iface);
181 TRACE("(%p)->(%08lx,%p)\n", This,Flags,GammaRamp);
183 /* This looks sane */
186 ERR("(%p) GammaRamp is NULL, returning DDERR_INVALIDPARAMS\n", This);
187 return DDERR_INVALIDPARAMS;
190 if(This->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
192 /* This returns a void */
193 IWineD3DDevice_SetGammaRamp(This->ddraw->wineD3DDevice,
196 (WINED3DGAMMARAMP *) GammaRamp);
200 ERR("(%p) Unimplemented for non-primary surfaces\n", This);
206 const IDirectDrawGammaControlVtbl IDirectDrawGammaControl_Vtbl =
208 IDirectDrawGammaControlImpl_QueryInterface,
209 IDirectDrawGammaControlImpl_AddRef,
210 IDirectDrawGammaControlImpl_Release,
211 IDirectDrawGammaControlImpl_GetGammaRamp,
212 IDirectDrawGammaControlImpl_SetGammaRamp