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_screen.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_screen.c')
-rw-r--r-- | src/gallium/drivers/virgl/virgl_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/virgl/virgl_screen.c b/src/gallium/drivers/virgl/virgl_screen.c index fbc6ababd46..38bff4a50cf 100644 --- a/src/gallium/drivers/virgl/virgl_screen.c +++ b/src/gallium/drivers/virgl/virgl_screen.c @@ -479,7 +479,7 @@ static void virgl_flush_frontbuffer(struct pipe_screen *screen, { struct virgl_screen *vscreen = virgl_screen(screen); struct virgl_winsys *vws = vscreen->vws; - struct virgl_resource *vres = (struct virgl_resource *)res; + struct virgl_resource *vres = virgl_resource(res); if (vws->flush_frontbuffer) vws->flush_frontbuffer(vws, vres->hw_res, level, layer, winsys_drawable_handle, |