Commit c4da128b authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Make the device and target parameters to FindContext() const.

parent 5a26da1d
......@@ -1923,7 +1923,7 @@ static void SetupForBlit(struct wined3d_device *device, struct wined3d_context *
}
/* Do not call while under the GL lock. */
static struct wined3d_context *FindContext(struct wined3d_device *device, struct wined3d_surface *target)
static struct wined3d_context *FindContext(const struct wined3d_device *device, const struct wined3d_surface *target)
{
struct wined3d_context *current_context = context_get_current();
struct wined3d_context *context;
......
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