Commit 6ffd0668 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Make the query parameter to wined3d_event_query_finish() const.

parent 2e636aae
......@@ -110,7 +110,7 @@ static enum wined3d_event_query_result wined3d_event_query_test(const struct win
return ret;
}
enum wined3d_event_query_result wined3d_event_query_finish(struct wined3d_event_query *query,
enum wined3d_event_query_result wined3d_event_query_finish(const struct wined3d_event_query *query,
struct wined3d_device *device)
{
struct wined3d_context *context;
......
......@@ -1041,7 +1041,7 @@ enum wined3d_event_query_result
};
void wined3d_event_query_destroy(struct wined3d_event_query *query) DECLSPEC_HIDDEN;
enum wined3d_event_query_result wined3d_event_query_finish(struct wined3d_event_query *query,
enum wined3d_event_query_result wined3d_event_query_finish(const struct wined3d_event_query *query,
struct wined3d_device *device) DECLSPEC_HIDDEN;
void wined3d_event_query_issue(struct wined3d_event_query *query, struct wined3d_device *device) DECLSPEC_HIDDEN;
BOOL wined3d_event_query_supported(const struct wined3d_gl_info *gl_info) DECLSPEC_HIDDEN;
......
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