From 0bae611bf5fa581377038df97c028bd0e00c46c0 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Wed, 29 Jun 2011 12:33:53 +0200 Subject: [PATCH] wined3d: Make the context parameter to context_create_fbo_entry() const. --- dlls/wined3d/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wined3d/context.c b/dlls/wined3d/context.c index fa7242d7c4f..8902ac5eb25 100644 --- a/dlls/wined3d/context.c +++ b/dlls/wined3d/context.c @@ -268,7 +268,7 @@ void context_check_fbo_status(struct wined3d_context *context, GLenum target) } } -static struct fbo_entry *context_create_fbo_entry(struct wined3d_context *context, +static struct fbo_entry *context_create_fbo_entry(const struct wined3d_context *context, struct wined3d_surface **render_targets, struct wined3d_surface *depth_stencil, DWORD location) { const struct wined3d_gl_info *gl_info = context->gl_info;