aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/marshal.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2020-03-19 01:56:57 -0400
committerMarek Olšák <[email protected]>2020-03-20 23:01:13 -0400
commit37725e6c389a1135b288373a4d589806c98af291 (patch)
tree0dc133714be431a43e02eb994997e053b3ea6dc1 /src/mesa/main/marshal.c
parent4ded23a4add49c887f764c221f1aab5e0019cee2 (diff)
glthread: autogenerate prototypes for custom-marshalled functions
Reviewed-by: Timothy Arceri <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4124>
Diffstat (limited to 'src/mesa/main/marshal.c')
-rw-r--r--src/mesa/main/marshal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/marshal.c b/src/mesa/main/marshal.c
index cbcb7c58750..d68dadaabca 100644
--- a/src/mesa/main/marshal.c
+++ b/src/mesa/main/marshal.c
@@ -213,14 +213,14 @@ _mesa_unmarshal_BufferData(struct gl_context *ctx,
void
_mesa_unmarshal_NamedBufferData(struct gl_context *ctx,
- const struct marshal_cmd_BufferData *cmd)
+ const struct marshal_cmd_NamedBufferData *cmd)
{
unreachable("never used - all BufferData variants use DISPATCH_CMD_BufferData");
}
void
_mesa_unmarshal_NamedBufferDataEXT(struct gl_context *ctx,
- const struct marshal_cmd_BufferData *cmd)
+ const struct marshal_cmd_NamedBufferDataEXT *cmd)
{
unreachable("never used - all BufferData variants use DISPATCH_CMD_BufferData");
}
@@ -328,14 +328,14 @@ _mesa_unmarshal_BufferSubData(struct gl_context *ctx,
void
_mesa_unmarshal_NamedBufferSubData(struct gl_context *ctx,
- const struct marshal_cmd_BufferSubData *cmd)
+ const struct marshal_cmd_NamedBufferSubData *cmd)
{
unreachable("never used - all BufferSubData variants use DISPATCH_CMD_BufferSubData");
}
void
_mesa_unmarshal_NamedBufferSubDataEXT(struct gl_context *ctx,
- const struct marshal_cmd_BufferSubData *cmd)
+ const struct marshal_cmd_NamedBufferSubDataEXT *cmd)
{
unreachable("never used - all BufferSubData variants use DISPATCH_CMD_BufferSubData");
}