diff options
author | Christian König <[email protected]> | 2013-09-09 10:49:55 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2013-09-12 15:16:30 +0200 |
commit | 2487324591c1629492288a814e1d8a3046d37b15 (patch) | |
tree | bb43571548f04c376f4cd804014c140bbff147c4 /src/gallium/drivers/r600/r600_pipe.c | |
parent | 56be937d42b2f18fff072854122dbe5e0a95dd16 (diff) |
radeon/uvd: move more logic into the common files
Move the code back into the common UVD files since we now
have base structures for R600 and radeonsi.
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index aa5cadf93e9..f60252ad315 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -1293,7 +1293,7 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws) rscreen->b.b.get_driver_query_info = r600_get_driver_query_info; if (rscreen->b.info.has_uvd) { - rscreen->b.b.get_video_param = r600_uvd_get_video_param; + rscreen->b.b.get_video_param = ruvd_get_video_param; rscreen->b.b.is_video_format_supported = ruvd_is_format_supported; } else { rscreen->b.b.get_video_param = r600_get_video_param; |