diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2012-12-27 12:13:57 +0100 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2012-12-27 11:55:58 +0100 |
commit | a60d2152e928a7011fc7c44a885a34c3cdd4f0fe (patch) | |
tree | f3009720432d4cf55923f4b03cfae1e89ff93d7e /src/radeon_glamor.h | |
parent | 04ebe14fe775d18b534e89b50b90ee293ae1910e (diff) |
glamor: Enable full 2D acceleration for SI as well.
Signed-off-by: Michel Dänzer <michel.daenzer@amd.com>
Diffstat (limited to 'src/radeon_glamor.h')
-rw-r--r-- | src/radeon_glamor.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/radeon_glamor.h b/src/radeon_glamor.h index f814e469..40c9092b 100644 --- a/src/radeon_glamor.h +++ b/src/radeon_glamor.h @@ -29,7 +29,6 @@ #ifdef USE_GLAMOR -#include "radeon_glamor_wrappers.h" #include "radeon_surface.h" Bool radeon_glamor_pre_init(ScrnInfoPtr scrn); @@ -43,8 +42,6 @@ Bool radeon_glamor_create_textured_pixmap(PixmapPtr pixmap); void radeon_glamor_exchange_buffers(PixmapPtr src, PixmapPtr dst); Bool radeon_glamor_pixmap_is_offscreen(PixmapPtr pixmap); -Bool radeon_glamor_prepare_access(PixmapPtr pixmap, glamor_access_t access); -void radeon_glamor_finish_access(PixmapPtr pixmap, glamor_access_t access); struct radeon_pixmap { struct radeon_surface surface; @@ -88,8 +85,6 @@ static inline Bool radeon_glamor_create_textured_pixmap(PixmapPtr pixmap) { retu static inline void radeon_glamor_exchange_buffers(PixmapPtr src, PixmapPtr dst) {} static inline Bool radeon_glamor_pixmap_is_offscreen(PixmapPtr pixmap) { return FALSE; } -static inline Bool radeon_glamor_prepare_access(PixmapPtr pixmap, int access) { return FALSE; } -static inline void radeon_glamor_finish_access(PixmapPtr pixmap, int access) {} static inline struct radeon_pixmap *radeon_get_pixmap_private(PixmapPtr pixmap) { return NULL; } |