From 9d9baef789361754b0dfc40ac75b6e3c133dc477 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Wed, 31 Aug 2011 20:40:45 +0200 Subject: [PATCH] wined3d: Make the device parameter to wined3d_device_get_light() const. --- dlls/wined3d/device.c | 2 +- include/wine/wined3d.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/wined3d/device.c b/dlls/wined3d/device.c index ed8afc827c6..c64ac9e46ff 100644 --- a/dlls/wined3d/device.c +++ b/dlls/wined3d/device.c @@ -2091,7 +2091,7 @@ HRESULT CDECL wined3d_device_set_light(struct wined3d_device *device, UINT light return WINED3D_OK; } -HRESULT CDECL wined3d_device_get_light(struct wined3d_device *device, UINT light_idx, WINED3DLIGHT *light) +HRESULT CDECL wined3d_device_get_light(const struct wined3d_device *device, UINT light_idx, WINED3DLIGHT *light) { UINT hash_idx = LIGHTMAP_HASHFUNC(light_idx); struct wined3d_light_info *light_info = NULL; diff --git a/include/wine/wined3d.h b/include/wine/wined3d.h index a5342bc1949..7b9a576165e 100644 --- a/include/wine/wined3d.h +++ b/include/wine/wined3d.h @@ -2222,7 +2222,7 @@ HRESULT __cdecl wined3d_device_get_front_buffer_data(struct wined3d_device *devi UINT swapchain_idx, struct wined3d_surface *dst_surface); void __cdecl wined3d_device_get_gamma_ramp(struct wined3d_device *device, UINT swapchain_idx, WINED3DGAMMARAMP *ramp); HRESULT __cdecl wined3d_device_get_index_buffer(struct wined3d_device *device, struct wined3d_buffer **index_buffer); -HRESULT __cdecl wined3d_device_get_light(struct wined3d_device *device, UINT light_idx, WINED3DLIGHT *light); +HRESULT __cdecl wined3d_device_get_light(const struct wined3d_device *device, UINT light_idx, WINED3DLIGHT *light); HRESULT __cdecl wined3d_device_get_light_enable(struct wined3d_device *device, UINT light_idx, BOOL *enable); HRESULT __cdecl wined3d_device_get_material(struct wined3d_device *device, WINED3DMATERIAL *material); float __cdecl wined3d_device_get_npatch_mode(struct wined3d_device *device);