user32: Add a test showing a problem in GetClassNameA.
[wine/wine64.git] / dlls / ddraw / gamma.c
blobb885b819d453935a1166d6dbd1aeb55c3706281b
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
21 #include "config.h"
22 #include "wine/port.h"
23 #include "wine/debug.h"
25 #include <assert.h>
26 #include <stdarg.h>
27 #include <string.h>
28 #include <stdlib.h>
30 #define COBJMACROS
32 #include "windef.h"
33 #include "winbase.h"
34 #include "winnls.h"
35 #include "winerror.h"
36 #include "wingdi.h"
37 #include "wine/exception.h"
38 #include "excpt.h"
40 #include "ddraw.h"
41 #include "d3d.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
57 * Params:
58 * riid: Interface id queried for
59 * obj: Returns the interface pointer
61 * Returns:
62 * S_OK or E_NOINTERFACE: See IDirectDrawSurface7::QueryInterface
64 **********************************************************/
65 static HRESULT WINAPI
66 IDirectDrawGammaControlImpl_QueryInterface(IDirectDrawGammaControl *iface, REFIID riid,
67 void **obj)
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),
73 riid,
74 obj);
77 /**********************************************************
78 * IDirectDrawGammaControl::AddRef
80 * Addref, thunks to IDirectDrawSurface
82 * Returns:
83 * The new refcount
85 **********************************************************/
86 static ULONG WINAPI
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
100 * Returns:
101 * The new refcount
103 **********************************************************/
104 static ULONG WINAPI
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
122 * Params:
123 * Flags: Ignored
124 * GammaRamp: Address to write the ramp to
126 * Returns:
127 * DD_OK on success
128 * DDERR_INVALIDPARAMS if GammaRamp is NULL
130 **********************************************************/
131 static HRESULT WINAPI
132 IDirectDrawGammaControlImpl_GetGammaRamp(IDirectDrawGammaControl *iface,
133 DWORD Flags,
134 DDGAMMARAMP *GammaRamp)
136 ICOM_THIS_FROM(IDirectDrawSurfaceImpl, IDirectDrawGammaControl, iface);
137 TRACE("(%p)->(%08x,%p)\n", This,Flags,GammaRamp);
139 /* This looks sane */
140 if(!GammaRamp)
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 /* Note: DDGAMMARAMP is compatible with WINED3DGAMMARAMP */
149 IWineD3DDevice_GetGammaRamp(This->ddraw->wineD3DDevice,
150 0 /* Swapchain */,
151 (WINED3DGAMMARAMP *) GammaRamp);
153 else
155 ERR("(%p) Unimplemented for non-primary surfaces\n", This);
158 return DD_OK;
161 /**********************************************************
162 * IDirectDrawGammaControl::SetGammaRamp
164 * Sets the red, green and blue gamma ramps for
166 * Params:
167 * Flags: Can be DDSGR_CALIBRATE to request calibration
168 * GammaRamp: Structure containing the new gamma ramp
170 * Returns:
171 * DD_OK on success
172 * DDERR_INVALIDPARAMS if GammaRamp is NULL
174 **********************************************************/
175 static HRESULT WINAPI
176 IDirectDrawGammaControlImpl_SetGammaRamp(IDirectDrawGammaControl *iface,
177 DWORD Flags,
178 DDGAMMARAMP *GammaRamp)
180 ICOM_THIS_FROM(IDirectDrawSurfaceImpl, IDirectDrawGammaControl, iface);
181 TRACE("(%p)->(%08x,%p)\n", This,Flags,GammaRamp);
183 /* This looks sane */
184 if(!GammaRamp)
186 ERR("(%p) GammaRamp is NULL, returning DDERR_INVALIDPARAMS\n", This);
187 return DDERR_INVALIDPARAMS;
190 if(This->surface_desc.ddsCaps.dwCaps & DDSCAPS_PRIMARYSURFACE)
193 /* Note: DDGAMMARAMP is compatible with WINED3DGAMMARAMP */
194 IWineD3DDevice_SetGammaRamp(This->ddraw->wineD3DDevice,
195 0 /* Swapchain */,
196 Flags,
197 (WINED3DGAMMARAMP *) GammaRamp);
199 else
201 ERR("(%p) Unimplemented for non-primary surfaces\n", This);
204 return DD_OK;
207 const IDirectDrawGammaControlVtbl IDirectDrawGammaControl_Vtbl =
209 IDirectDrawGammaControlImpl_QueryInterface,
210 IDirectDrawGammaControlImpl_AddRef,
211 IDirectDrawGammaControlImpl_Release,
212 IDirectDrawGammaControlImpl_GetGammaRamp,
213 IDirectDrawGammaControlImpl_SetGammaRamp