xf86-video-ati: Branch 'master'

Michel Dänzer daenzer at kemper.freedesktop.org
Wed May 17 07:08:19 UTC 2017


 src/radeon_glamor.c |    9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

New commits:
commit 2b7d77b90108911777a11ecaa63435552000c958
Author: Eric Anholt <eric at anholt.net>
Date:   Tue May 16 11:04:29 2017 -0700

    Use plain glamor_egl_create_textured_screen().
    
    Since 5064ffab631 (2014), glamor's implementation of _ext just drops the
    back_pixmap arg, which we were passing NULL (the default) to anyway.
    
    Signed-off-by: Eric Anholt <eric at anholt.net>
    Reviewed-by: Michel Dänzer <michel.daenzer at amd.com>

diff --git a/src/radeon_glamor.c b/src/radeon_glamor.c
index 590c9f0c..e5e35553 100644
--- a/src/radeon_glamor.c
+++ b/src/radeon_glamor.c
@@ -61,11 +61,10 @@ radeon_glamor_create_screen_resources(ScreenPtr screen)
 		return FALSE;
 #endif
 
-	if (!glamor_egl_create_textured_screen_ext(screen,
-						   info->front_bo->handle,
-						   scrn->displayWidth *
-						   info->pixel_bytes,
-						   NULL))
+	if (!glamor_egl_create_textured_screen(screen,
+					       info->front_bo->handle,
+					       scrn->displayWidth *
+					       info->pixel_bytes))
 		return FALSE;
 
 	return TRUE;


More information about the xorg-commit mailing list