diff options
author | Christian König <[email protected]> | 2013-04-03 10:18:35 +0200 |
---|---|---|
committer | Christian König <[email protected]> | 2013-04-11 17:10:28 +0200 |
commit | 5b2855bfe79bfc3995969f2bf775d89b1bc1808a (patch) | |
tree | 5da3383f7c400cc037b6dbaa1695bbdf24b09563 /src/gallium/drivers/radeon/Makefile.sources | |
parent | f91e4d2c9d714bb7d667956cd93f216c18a434f4 (diff) |
radeon/uvd: add UVD implementation v5
Just everything you need for UVD with r600g and radeonsi.
v2: move UVD code to radeon subdir, clean up build system additions,
remove an unused SI function, disable tiling on SI for now.
v3: some minor indentation fix and rebased
v4: dpb size calculation fixed
v5: implement proper fall-back in case the kernel doesn't support UVD,
based on patches from Andreas Boll but cleaned up a bit more.
Signed-off-by: Christian König <[email protected]>
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/Makefile.sources')
-rw-r--r-- | src/gallium/drivers/radeon/Makefile.sources | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeon/Makefile.sources b/src/gallium/drivers/radeon/Makefile.sources index efe0e6bb4da..a23d5c4ad2c 100644 --- a/src/gallium/drivers/radeon/Makefile.sources +++ b/src/gallium/drivers/radeon/Makefile.sources @@ -1,6 +1,9 @@ -CPP_FILES := \ +C_SOURCES := \ + radeon_uvd.c + +LLVM_CPP_FILES := \ radeon_llvm_emit.cpp -C_FILES := \ +LLVM_C_FILES := \ radeon_setup_tgsi_llvm.c \ radeon_llvm_util.c |