mirror of
https://github.com/X11Libre/xf86-video-amdgpu.git
synced 2026-03-24 01:24:31 +00:00
glamor: Handle GLAMOR_* flags removed from xserver
The behaviour is the same as when the removed flags were passed in. (cherry picked from radeon commit b16609b453bb1a181198cf27778f205dc23fb642) Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
@@ -298,13 +298,9 @@ Bool amdgpu_glamor_init(ScreenPtr screen)
|
||||
{
|
||||
ScrnInfoPtr scrn = xf86ScreenToScrn(screen);
|
||||
|
||||
if (!glamor_init
|
||||
(screen,
|
||||
GLAMOR_INVERTED_Y_AXIS | GLAMOR_USE_EGL_SCREEN | GLAMOR_USE_SCREEN
|
||||
#ifdef GLAMOR_NO_DRI3
|
||||
| GLAMOR_NO_DRI3
|
||||
#endif
|
||||
| GLAMOR_USE_PICTURE_SCREEN)) {
|
||||
if (!glamor_init(screen, GLAMOR_USE_EGL_SCREEN | GLAMOR_USE_SCREEN |
|
||||
GLAMOR_USE_PICTURE_SCREEN | GLAMOR_INVERTED_Y_AXIS |
|
||||
GLAMOR_NO_DRI3)) {
|
||||
xf86DrvMsg(scrn->scrnIndex, X_ERROR,
|
||||
"Failed to initialize glamor.\n");
|
||||
return FALSE;
|
||||
|
||||
@@ -32,6 +32,22 @@
|
||||
#define GLAMOR_FOR_XORG 1
|
||||
#include <glamor.h>
|
||||
|
||||
#ifndef GLAMOR_NO_DRI3
|
||||
#define GLAMOR_NO_DRI3 0
|
||||
#define glamor_fd_from_pixmap glamor_dri3_fd_from_pixmap
|
||||
#define glamor_pixmap_from_fd glamor_egl_dri3_pixmap_from_fd
|
||||
#endif
|
||||
|
||||
#ifndef GLAMOR_INVERTED_Y_AXIS
|
||||
#define GLAMOR_INVERTED_Y_AXIS 0
|
||||
#endif
|
||||
#ifndef GLAMOR_USE_SCREEN
|
||||
#define GLAMOR_USE_SCREEN 0
|
||||
#endif
|
||||
#ifndef GLAMOR_USE_PICTURE_SCREEN
|
||||
#define GLAMOR_USE_PICTURE_SCREEN 0
|
||||
#endif
|
||||
|
||||
Bool amdgpu_glamor_pre_init(ScrnInfoPtr scrn);
|
||||
Bool amdgpu_glamor_init(ScreenPtr screen);
|
||||
Bool amdgpu_glamor_create_screen_resources(ScreenPtr screen);
|
||||
|
||||
Reference in New Issue
Block a user