diff options
author | Emil Velikov <[email protected]> | 2015-10-28 11:14:02 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-10-30 17:37:09 +0000 |
commit | 7af46b9c747cbd503a2b97f00f1c603f1b75aaff (patch) | |
tree | 0970fb5071007a6b88d7448841b11a2a85450e8d /src/gallium/drivers/virgl/virgl_streamout.c | |
parent | 6b123fa07ff9d73d6e67416c2372eab5c17282b6 (diff) |
virgl: introduce and use virgl_transfer/texture/resource inline wrappers
The only two remaining cases of (struct virgl_resource *) require a
closer look. Either the error checking is missing or the arguments
provided feel wrong.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/virgl/virgl_streamout.c')
-rw-r--r-- | src/gallium/drivers/virgl/virgl_streamout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/virgl/virgl_streamout.c b/src/gallium/drivers/virgl/virgl_streamout.c index c3cbcffc193..c449010e40e 100644 --- a/src/gallium/drivers/virgl/virgl_streamout.c +++ b/src/gallium/drivers/virgl/virgl_streamout.c @@ -33,7 +33,7 @@ static struct pipe_stream_output_target *virgl_create_so_target( unsigned buffer_size) { struct virgl_context *vctx = virgl_context(ctx); - struct virgl_resource *res = (struct virgl_resource *)buffer; + struct virgl_resource *res = virgl_resource(buffer); struct virgl_so_target *t = CALLOC_STRUCT(virgl_so_target); uint32_t handle; |