mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-26 06:50:37 +02:00
identity: fix copy & paste error
This commit is contained in:
parent
22812421b5
commit
4d02534628
1 changed files with 4 additions and 4 deletions
|
|
@ -378,7 +378,7 @@ identity_delete_vs_state(struct pipe_context *_pipe,
|
|||
}
|
||||
|
||||
|
||||
static void
|
||||
static void *
|
||||
identity_create_vertex_elements_state(struct pipe_context *_pipe,
|
||||
unsigned num_elements,
|
||||
const struct pipe_vertex_element *vertex_elements)
|
||||
|
|
@ -386,9 +386,9 @@ identity_create_vertex_elements_state(struct pipe_context *_pipe,
|
|||
struct identity_context *id_pipe = identity_context(_pipe);
|
||||
struct pipe_context *pipe = id_pipe->pipe;
|
||||
|
||||
pipe->create_vertex_elements_state(pipe,
|
||||
num_elements,
|
||||
vertex_elements);
|
||||
return pipe->create_vertex_elements_state(pipe,
|
||||
num_elements,
|
||||
vertex_elements);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue