diff options
author | Michel Dänzer <michel.daenzer@amd.com> | 2015-11-10 16:31:09 +0900 |
---|---|---|
committer | Michel Dänzer <michel@daenzer.net> | 2015-11-17 12:25:15 +0900 |
commit | 10b7c3def58bb34acc38f076bc230e25b454ab79 (patch) | |
tree | 1dcae48f6dbc4441816c117242329c51793e870a /configure.ac | |
parent | 535e5438b2c32f774b9c8c27ee0289b4749548ef (diff) |
glamor: Deal with glamor_egl_destroy_textured_pixmap being removed
When it's not available, it's safe to call down to the glamor
DestroyPixmap hook instead.
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0ff901b0..0a95420b 100644 --- a/configure.ac +++ b/configure.ac @@ -119,6 +119,12 @@ if test "x$GLAMOR" != "xno"; then [Have glamor_glyphs_init API])], [], [#include "xorg-server.h" #include "glamor.h"]) + + AC_CHECK_DECL(glamor_egl_destroy_textured_pixmap, + [AC_DEFINE(HAVE_GLAMOR_EGL_DESTROY_TEXTURED_PIXMAP, 1, + [Have glamor_egl_destroy_textured_pixmap API])], [], + [#include "xorg-server.h" + #include "glamor.h"]) fi if test "x$GLAMOR_XSERVER" != xyes; then |