wined3d: Pass a wined3d_context_gl structure to context_load_numbered_arrays().

Signed-off-by: Matteo Bruni <mbruni@codeweavers.com>
Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
stable
Matteo Bruni 2019-05-14 15:26:24 +04:30 committed by Alexandre Julliard
parent dfe7e91060
commit 24f906f497
1 changed files with 3 additions and 2 deletions

View File

@ -5334,9 +5334,10 @@ static void context_unload_numbered_arrays(struct wined3d_context *context)
}
}
static void context_load_numbered_arrays(struct wined3d_context *context,
static void wined3d_context_gl_load_numbered_arrays(struct wined3d_context_gl *context_gl,
const struct wined3d_stream_info *stream_info, const struct wined3d_state *state)
{
struct wined3d_context *context = &context_gl->c;
const struct wined3d_shader *vs = state->shader[WINED3D_SHADER_TYPE_VERTEX];
const struct wined3d_gl_info *gl_info = context->gl_info;
GLuint current_bo;
@ -5540,7 +5541,7 @@ void context_update_stream_sources(struct wined3d_context *context, const struct
if (context->d3d_info->ffp_generic_attributes || use_vs(state))
{
TRACE("Loading numbered arrays.\n");
context_load_numbered_arrays(context, &context->stream_info, state);
wined3d_context_gl_load_numbered_arrays(wined3d_context_gl(context), &context->stream_info, state);
return;
}