Commit 7d469430 authored by Henri Verbeet's avatar Henri Verbeet Committed by Alexandre Julliard

wined3d: Make some parameters to get_glsl_program_entry() const.

parent 3b3470b1
......@@ -3726,9 +3726,9 @@ static void add_glsl_program_entry(struct shader_glsl_priv *priv, struct glsl_sh
}
}
static struct glsl_shader_prog_link *get_glsl_program_entry(struct shader_glsl_priv *priv,
static struct glsl_shader_prog_link *get_glsl_program_entry(const struct shader_glsl_priv *priv,
const struct wined3d_shader *vshader, const struct wined3d_shader *pshader,
struct vs_compile_args *vs_args, struct ps_compile_args *ps_args)
const struct vs_compile_args *vs_args, const struct ps_compile_args *ps_args)
{
struct wine_rb_entry *entry;
struct glsl_program_key key;
......
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