Commit 53b99dde authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Make the device and surface parameters to context_enum_surface_fbo_entries() const.

parent b3b1d205
......@@ -563,8 +563,8 @@ void context_free_event_query(struct wined3d_event_query *query)
typedef void (context_fbo_entry_func_t)(struct wined3d_context *context, struct fbo_entry *entry);
static void context_enum_surface_fbo_entries(struct wined3d_device *device,
struct wined3d_surface *surface, context_fbo_entry_func_t *callback)
static void context_enum_surface_fbo_entries(const struct wined3d_device *device,
const struct wined3d_surface *surface, context_fbo_entry_func_t *callback)
{
UINT i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment