mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 10:25:39 +00:00
1420 lines
45 KiB
C
1420 lines
45 KiB
C
/*
|
|
* X11DRV initialization code
|
|
*
|
|
* Copyright 1998 Patrik Stridvall
|
|
* Copyright 2000 Alexandre Julliard
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#if 0
|
|
#pragma makedep unix
|
|
#endif
|
|
|
|
#include "config.h"
|
|
|
|
#include <fcntl.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/time.h>
|
|
#include <unistd.h>
|
|
#include <assert.h>
|
|
#include <dlfcn.h>
|
|
#include <X11/cursorfont.h>
|
|
#include <X11/Xlib.h>
|
|
#include <X11/XKBlib.h>
|
|
#ifdef HAVE_X11_EXTENSIONS_XRENDER_H
|
|
#include <X11/extensions/Xrender.h>
|
|
#endif
|
|
|
|
#include "ntstatus.h"
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define VK_NO_PROTOTYPES
|
|
#define WINE_VK_HOST
|
|
|
|
#include "x11drv.h"
|
|
#include "winreg.h"
|
|
#include "xcomposite.h"
|
|
#include "wine/server.h"
|
|
#include "wine/debug.h"
|
|
#include "wine/list.h"
|
|
#include "wine/vulkan.h"
|
|
#include "wine/vulkan_driver.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(x11drv);
|
|
WINE_DECLARE_DEBUG_CHANNEL(synchronous);
|
|
WINE_DECLARE_DEBUG_CHANNEL(winediag);
|
|
|
|
XVisualInfo default_visual = { 0 };
|
|
XVisualInfo argb_visual = { 0 };
|
|
Colormap default_colormap = None;
|
|
XPixmapFormatValues **pixmap_formats;
|
|
Atom systray_atom = 0;
|
|
unsigned int screen_bpp;
|
|
Window root_window;
|
|
BOOL usexvidmode = TRUE;
|
|
BOOL usexrandr = TRUE;
|
|
BOOL usexcomposite = TRUE;
|
|
BOOL use_take_focus = TRUE;
|
|
BOOL use_primary_selection = FALSE;
|
|
BOOL use_system_cursors = TRUE;
|
|
BOOL show_systray = TRUE;
|
|
BOOL grab_fullscreen = FALSE;
|
|
BOOL managed_mode = TRUE;
|
|
BOOL decorated_mode = TRUE;
|
|
BOOL private_color_map = FALSE;
|
|
int primary_monitor = 0;
|
|
BOOL client_side_graphics = TRUE;
|
|
BOOL client_side_with_render = TRUE;
|
|
BOOL shape_layered_windows = TRUE;
|
|
int copy_default_colors = 128;
|
|
int alloc_system_colors = 256;
|
|
int xrender_error_base = 0;
|
|
char *process_name = NULL;
|
|
WNDPROC client_foreign_window_proc = NULL;
|
|
|
|
static x11drv_error_callback err_callback; /* current callback for error */
|
|
static Display *err_callback_display; /* display callback is set for */
|
|
static void *err_callback_arg; /* error callback argument */
|
|
static int err_callback_result; /* error callback result */
|
|
static unsigned long err_serial; /* serial number of first request */
|
|
static int (*old_error_handler)( Display *, XErrorEvent * );
|
|
static BOOL use_xim = TRUE;
|
|
static WCHAR input_style[20];
|
|
|
|
static pthread_mutex_t d3dkmt_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
static pthread_mutex_t error_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
struct x11_d3dkmt_adapter
|
|
{
|
|
D3DKMT_HANDLE handle; /* Kernel mode graphics adapter handle */
|
|
VkPhysicalDevice vk_device; /* Vulkan physical device */
|
|
struct list entry; /* List entry */
|
|
};
|
|
|
|
struct d3dkmt_vidpn_source
|
|
{
|
|
D3DKMT_VIDPNSOURCEOWNER_TYPE type; /* VidPN source owner type */
|
|
D3DDDI_VIDEO_PRESENT_SOURCE_ID id; /* VidPN present source id */
|
|
D3DKMT_HANDLE device; /* Kernel mode device context */
|
|
struct list entry; /* List entry */
|
|
};
|
|
|
|
static VkInstance d3dkmt_vk_instance; /* Vulkan instance for D3DKMT functions */
|
|
static struct list x11_d3dkmt_adapters = LIST_INIT( x11_d3dkmt_adapters );
|
|
static struct list d3dkmt_vidpn_sources = LIST_INIT( d3dkmt_vidpn_sources ); /* VidPN source information list */
|
|
|
|
#define IS_OPTION_TRUE(ch) \
|
|
((ch) == 'y' || (ch) == 'Y' || (ch) == 't' || (ch) == 'T' || (ch) == '1')
|
|
#define IS_OPTION_FALSE(ch) \
|
|
((ch) == 'n' || (ch) == 'N' || (ch) == 'f' || (ch) == 'F' || (ch) == '0')
|
|
|
|
Atom X11DRV_Atoms[NB_XATOMS - FIRST_XATOM];
|
|
|
|
static const char * const atom_names[NB_XATOMS - FIRST_XATOM] =
|
|
{
|
|
"CLIPBOARD",
|
|
"COMPOUND_TEXT",
|
|
"EDID",
|
|
"INCR",
|
|
"MANAGER",
|
|
"MULTIPLE",
|
|
"SELECTION_DATA",
|
|
"TARGETS",
|
|
"TEXT",
|
|
"TIMESTAMP",
|
|
"UTF8_STRING",
|
|
"RAW_ASCENT",
|
|
"RAW_DESCENT",
|
|
"RAW_CAP_HEIGHT",
|
|
"Rel X",
|
|
"Rel Y",
|
|
"WM_PROTOCOLS",
|
|
"WM_DELETE_WINDOW",
|
|
"WM_STATE",
|
|
"WM_TAKE_FOCUS",
|
|
"DndProtocol",
|
|
"DndSelection",
|
|
"_ICC_PROFILE",
|
|
"_KDE_NET_WM_STATE_SKIP_SWITCHER",
|
|
"_MOTIF_WM_HINTS",
|
|
"_NET_STARTUP_INFO_BEGIN",
|
|
"_NET_STARTUP_INFO",
|
|
"_NET_SUPPORTED",
|
|
"_NET_SYSTEM_TRAY_OPCODE",
|
|
"_NET_SYSTEM_TRAY_S0",
|
|
"_NET_SYSTEM_TRAY_VISUAL",
|
|
"_NET_WM_FULLSCREEN_MONITORS",
|
|
"_NET_WM_ICON",
|
|
"_NET_WM_MOVERESIZE",
|
|
"_NET_WM_NAME",
|
|
"_NET_WM_PID",
|
|
"_NET_WM_PING",
|
|
"_NET_WM_STATE",
|
|
"_NET_WM_STATE_ABOVE",
|
|
"_NET_WM_STATE_DEMANDS_ATTENTION",
|
|
"_NET_WM_STATE_FULLSCREEN",
|
|
"_NET_WM_STATE_MAXIMIZED_HORZ",
|
|
"_NET_WM_STATE_MAXIMIZED_VERT",
|
|
"_NET_WM_STATE_SKIP_PAGER",
|
|
"_NET_WM_STATE_SKIP_TASKBAR",
|
|
"_NET_WM_USER_TIME",
|
|
"_NET_WM_USER_TIME_WINDOW",
|
|
"_NET_WM_WINDOW_OPACITY",
|
|
"_NET_WM_WINDOW_TYPE",
|
|
"_NET_WM_WINDOW_TYPE_DIALOG",
|
|
"_NET_WM_WINDOW_TYPE_NORMAL",
|
|
"_NET_WM_WINDOW_TYPE_UTILITY",
|
|
"_NET_WORKAREA",
|
|
"_GTK_WORKAREAS_D0",
|
|
"_XEMBED",
|
|
"_XEMBED_INFO",
|
|
"XdndAware",
|
|
"XdndEnter",
|
|
"XdndPosition",
|
|
"XdndStatus",
|
|
"XdndLeave",
|
|
"XdndFinished",
|
|
"XdndDrop",
|
|
"XdndActionCopy",
|
|
"XdndActionMove",
|
|
"XdndActionLink",
|
|
"XdndActionAsk",
|
|
"XdndActionPrivate",
|
|
"XdndSelection",
|
|
"XdndTypeList",
|
|
"HTML Format",
|
|
"WCF_DIF",
|
|
"WCF_ENHMETAFILE",
|
|
"WCF_HDROP",
|
|
"WCF_PENDATA",
|
|
"WCF_RIFF",
|
|
"WCF_SYLK",
|
|
"WCF_TIFF",
|
|
"WCF_WAVE",
|
|
"image/bmp",
|
|
"image/gif",
|
|
"image/jpeg",
|
|
"image/png",
|
|
"text/html",
|
|
"text/plain",
|
|
"text/rtf",
|
|
"text/richtext",
|
|
"text/uri-list"
|
|
};
|
|
|
|
/***********************************************************************
|
|
* ignore_error
|
|
*
|
|
* Check if the X error is one we can ignore.
|
|
*/
|
|
static inline BOOL ignore_error( Display *display, XErrorEvent *event )
|
|
{
|
|
if ((event->request_code == X_SetInputFocus ||
|
|
event->request_code == X_ChangeWindowAttributes ||
|
|
event->request_code == X_ConfigureWindow ||
|
|
event->request_code == X_SendEvent) &&
|
|
(event->error_code == BadMatch ||
|
|
event->error_code == BadWindow)) return TRUE;
|
|
|
|
/* the clipboard display interacts with external windows, ignore all errors */
|
|
if (display == clipboard_display) return TRUE;
|
|
|
|
/* ignore a number of errors on gdi display caused by creating/destroying windows */
|
|
if (display == gdi_display)
|
|
{
|
|
if (event->error_code == BadDrawable ||
|
|
event->error_code == BadGC ||
|
|
event->error_code == BadWindow)
|
|
return TRUE;
|
|
#ifdef HAVE_X11_EXTENSIONS_XRENDER_H
|
|
if (xrender_error_base) /* check for XRender errors */
|
|
{
|
|
if (event->error_code == xrender_error_base + BadPicture) return TRUE;
|
|
}
|
|
#endif
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* X11DRV_expect_error
|
|
*
|
|
* Setup a callback function that will be called on an X error. The
|
|
* callback must return non-zero if the error is the one it expected.
|
|
*/
|
|
void X11DRV_expect_error( Display *display, x11drv_error_callback callback, void *arg )
|
|
{
|
|
pthread_mutex_lock( &error_mutex );
|
|
XLockDisplay( display );
|
|
err_callback = callback;
|
|
err_callback_display = display;
|
|
err_callback_arg = arg;
|
|
err_callback_result = 0;
|
|
err_serial = NextRequest(display);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* X11DRV_check_error
|
|
*
|
|
* Check if an expected X11 error occurred; return non-zero if yes.
|
|
* The caller is responsible for calling XSync first if necessary.
|
|
*/
|
|
int X11DRV_check_error(void)
|
|
{
|
|
int res = err_callback_result;
|
|
err_callback = NULL;
|
|
XUnlockDisplay( err_callback_display );
|
|
pthread_mutex_unlock( &error_mutex );
|
|
return res;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* error_handler
|
|
*/
|
|
static int error_handler( Display *display, XErrorEvent *error_evt )
|
|
{
|
|
if (err_callback && display == err_callback_display &&
|
|
(!error_evt->serial || error_evt->serial >= err_serial))
|
|
{
|
|
if ((err_callback_result = err_callback( display, error_evt, err_callback_arg )))
|
|
{
|
|
TRACE( "got expected error %d req %d\n",
|
|
error_evt->error_code, error_evt->request_code );
|
|
return 0;
|
|
}
|
|
}
|
|
if (ignore_error( display, error_evt ))
|
|
{
|
|
TRACE( "got ignored error %d req %d\n",
|
|
error_evt->error_code, error_evt->request_code );
|
|
return 0;
|
|
}
|
|
if (TRACE_ON(synchronous))
|
|
{
|
|
ERR( "X protocol error: serial=%ld, request_code=%d - breaking into debugger\n",
|
|
error_evt->serial, error_evt->request_code );
|
|
assert( 0 );
|
|
}
|
|
old_error_handler( display, error_evt );
|
|
return 0;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* init_pixmap_formats
|
|
*/
|
|
static void init_pixmap_formats( Display *display )
|
|
{
|
|
int i, count, max = 32;
|
|
XPixmapFormatValues *formats = XListPixmapFormats( display, &count );
|
|
|
|
for (i = 0; i < count; i++)
|
|
{
|
|
TRACE( "depth %u, bpp %u, pad %u\n",
|
|
formats[i].depth, formats[i].bits_per_pixel, formats[i].scanline_pad );
|
|
if (formats[i].depth > max) max = formats[i].depth;
|
|
}
|
|
pixmap_formats = calloc( 1, sizeof(*pixmap_formats) * (max + 1) );
|
|
for (i = 0; i < count; i++) pixmap_formats[formats[i].depth] = &formats[i];
|
|
}
|
|
|
|
|
|
HKEY reg_open_key( HKEY root, const WCHAR *name, ULONG name_len )
|
|
{
|
|
UNICODE_STRING nameW = { name_len, name_len, (WCHAR *)name };
|
|
OBJECT_ATTRIBUTES attr;
|
|
HANDLE ret;
|
|
|
|
attr.Length = sizeof(attr);
|
|
attr.RootDirectory = root;
|
|
attr.ObjectName = &nameW;
|
|
attr.Attributes = 0;
|
|
attr.SecurityDescriptor = NULL;
|
|
attr.SecurityQualityOfService = NULL;
|
|
|
|
return NtOpenKeyEx( &ret, MAXIMUM_ALLOWED, &attr, 0 ) ? 0 : ret;
|
|
}
|
|
|
|
|
|
HKEY open_hkcu_key( const char *name )
|
|
{
|
|
WCHAR bufferW[256];
|
|
static HKEY hkcu;
|
|
|
|
if (!hkcu)
|
|
{
|
|
char buffer[256];
|
|
DWORD_PTR sid_data[(sizeof(TOKEN_USER) + SECURITY_MAX_SID_SIZE) / sizeof(DWORD_PTR)];
|
|
DWORD i, len = sizeof(sid_data);
|
|
SID *sid;
|
|
|
|
if (NtQueryInformationToken( GetCurrentThreadEffectiveToken(), TokenUser, sid_data, len, &len ))
|
|
return 0;
|
|
|
|
sid = ((TOKEN_USER *)sid_data)->User.Sid;
|
|
len = sprintf( buffer, "\\Registry\\User\\S-%u-%u", sid->Revision,
|
|
(int)MAKELONG( MAKEWORD( sid->IdentifierAuthority.Value[5],
|
|
sid->IdentifierAuthority.Value[4] ),
|
|
MAKEWORD( sid->IdentifierAuthority.Value[3],
|
|
sid->IdentifierAuthority.Value[2] )));
|
|
for (i = 0; i < sid->SubAuthorityCount; i++)
|
|
len += sprintf( buffer + len, "-%u", (int)sid->SubAuthority[i] );
|
|
|
|
ascii_to_unicode( bufferW, buffer, len );
|
|
hkcu = reg_open_key( NULL, bufferW, len * sizeof(WCHAR) );
|
|
}
|
|
|
|
return reg_open_key( hkcu, bufferW, asciiz_to_unicode( bufferW, name ) - sizeof(WCHAR) );
|
|
}
|
|
|
|
|
|
ULONG query_reg_value( HKEY hkey, const WCHAR *name, KEY_VALUE_PARTIAL_INFORMATION *info, ULONG size )
|
|
{
|
|
unsigned int name_size = name ? lstrlenW( name ) * sizeof(WCHAR) : 0;
|
|
UNICODE_STRING nameW = { name_size, name_size, (WCHAR *)name };
|
|
|
|
if (NtQueryValueKey( hkey, &nameW, KeyValuePartialInformation,
|
|
info, size, &size ))
|
|
return 0;
|
|
|
|
return size - FIELD_OFFSET(KEY_VALUE_PARTIAL_INFORMATION, Data);
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* get_config_key
|
|
*
|
|
* Get a config key from either the app-specific or the default config
|
|
*/
|
|
static inline DWORD get_config_key( HKEY defkey, HKEY appkey, const char *name,
|
|
WCHAR *buffer, DWORD size )
|
|
{
|
|
WCHAR nameW[128];
|
|
char buf[2048];
|
|
KEY_VALUE_PARTIAL_INFORMATION *info = (void *)buf;
|
|
|
|
asciiz_to_unicode( nameW, name );
|
|
|
|
if (appkey && query_reg_value( appkey, nameW, info, sizeof(buf) ))
|
|
{
|
|
size = min( info->DataLength, size - sizeof(WCHAR) );
|
|
memcpy( buffer, info->Data, size );
|
|
buffer[size / sizeof(WCHAR)] = 0;
|
|
return 0;
|
|
}
|
|
|
|
if (defkey && query_reg_value( defkey, nameW, info, sizeof(buf) ))
|
|
{
|
|
size = min( info->DataLength, size - sizeof(WCHAR) );
|
|
memcpy( buffer, info->Data, size );
|
|
buffer[size / sizeof(WCHAR)] = 0;
|
|
return 0;
|
|
}
|
|
|
|
return ERROR_FILE_NOT_FOUND;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* setup_options
|
|
*
|
|
* Setup the x11drv options.
|
|
*/
|
|
static void setup_options(void)
|
|
{
|
|
static const WCHAR x11driverW[] = {'\\','X','1','1',' ','D','r','i','v','e','r',0};
|
|
WCHAR buffer[MAX_PATH+16], *p, *appname;
|
|
HKEY hkey, appkey = 0;
|
|
DWORD len;
|
|
|
|
/* @@ Wine registry key: HKCU\Software\Wine\X11 Driver */
|
|
hkey = open_hkcu_key( "Software\\Wine\\X11 Driver" );
|
|
|
|
/* open the app-specific key */
|
|
|
|
appname = NtCurrentTeb()->Peb->ProcessParameters->ImagePathName.Buffer;
|
|
if ((p = wcsrchr( appname, '/' ))) appname = p + 1;
|
|
if ((p = wcsrchr( appname, '\\' ))) appname = p + 1;
|
|
len = lstrlenW( appname );
|
|
|
|
if (len && len < MAX_PATH)
|
|
{
|
|
HKEY tmpkey;
|
|
int i;
|
|
for (i = 0; appname[i]; i++) buffer[i] = RtlDowncaseUnicodeChar( appname[i] );
|
|
buffer[i] = 0;
|
|
appname = buffer;
|
|
if ((process_name = malloc( len * 3 + 1 )))
|
|
ntdll_wcstoumbs( appname, len + 1, process_name, len * 3 + 1, FALSE );
|
|
memcpy( appname + i, x11driverW, sizeof(x11driverW) );
|
|
/* @@ Wine registry key: HKCU\Software\Wine\AppDefaults\app.exe\X11 Driver */
|
|
if ((tmpkey = open_hkcu_key( "Software\\Wine\\AppDefaults" )))
|
|
{
|
|
appkey = reg_open_key( tmpkey, appname, lstrlenW( appname ) * sizeof(WCHAR) );
|
|
NtClose( tmpkey );
|
|
}
|
|
}
|
|
|
|
if (!get_config_key( hkey, appkey, "Managed", buffer, sizeof(buffer) ))
|
|
managed_mode = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "Decorated", buffer, sizeof(buffer) ))
|
|
decorated_mode = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "UseXVidMode", buffer, sizeof(buffer) ))
|
|
usexvidmode = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "UseXRandR", buffer, sizeof(buffer) ))
|
|
usexrandr = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "UseTakeFocus", buffer, sizeof(buffer) ))
|
|
use_take_focus = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "UsePrimarySelection", buffer, sizeof(buffer) ))
|
|
use_primary_selection = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "UseSystemCursors", buffer, sizeof(buffer) ))
|
|
use_system_cursors = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "ShowSystray", buffer, sizeof(buffer) ))
|
|
show_systray = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "GrabFullscreen", buffer, sizeof(buffer) ))
|
|
grab_fullscreen = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "ScreenDepth", buffer, sizeof(buffer) ))
|
|
default_visual.depth = wcstol( buffer, NULL, 0 );
|
|
|
|
if (!get_config_key( hkey, appkey, "ClientSideGraphics", buffer, sizeof(buffer) ))
|
|
client_side_graphics = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "ClientSideWithRender", buffer, sizeof(buffer) ))
|
|
client_side_with_render = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "UseXIM", buffer, sizeof(buffer) ))
|
|
use_xim = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "ShapeLayeredWindows", buffer, sizeof(buffer) ))
|
|
shape_layered_windows = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "PrivateColorMap", buffer, sizeof(buffer) ))
|
|
private_color_map = IS_OPTION_TRUE( buffer[0] );
|
|
|
|
if (!get_config_key( hkey, appkey, "PrimaryMonitor", buffer, sizeof(buffer) ))
|
|
primary_monitor = wcstol( buffer, NULL, 0 );
|
|
|
|
if (!get_config_key( hkey, appkey, "CopyDefaultColors", buffer, sizeof(buffer) ))
|
|
copy_default_colors = wcstol( buffer, NULL, 0 );
|
|
|
|
if (!get_config_key( hkey, appkey, "AllocSystemColors", buffer, sizeof(buffer) ))
|
|
alloc_system_colors = wcstol( buffer, NULL, 0 );
|
|
|
|
get_config_key( hkey, appkey, "InputStyle", input_style, sizeof(input_style) );
|
|
|
|
NtClose( appkey );
|
|
NtClose( hkey );
|
|
}
|
|
|
|
#ifdef SONAME_LIBXCOMPOSITE
|
|
|
|
#define MAKE_FUNCPTR(f) typeof(f) * p##f;
|
|
MAKE_FUNCPTR(XCompositeQueryExtension)
|
|
MAKE_FUNCPTR(XCompositeQueryVersion)
|
|
MAKE_FUNCPTR(XCompositeVersion)
|
|
MAKE_FUNCPTR(XCompositeRedirectWindow)
|
|
MAKE_FUNCPTR(XCompositeRedirectSubwindows)
|
|
MAKE_FUNCPTR(XCompositeUnredirectWindow)
|
|
MAKE_FUNCPTR(XCompositeUnredirectSubwindows)
|
|
MAKE_FUNCPTR(XCompositeCreateRegionFromBorderClip)
|
|
MAKE_FUNCPTR(XCompositeNameWindowPixmap)
|
|
#undef MAKE_FUNCPTR
|
|
|
|
static int xcomp_event_base;
|
|
static int xcomp_error_base;
|
|
|
|
static void X11DRV_XComposite_Init(void)
|
|
{
|
|
void *xcomposite_handle = dlopen(SONAME_LIBXCOMPOSITE, RTLD_NOW);
|
|
if (!xcomposite_handle)
|
|
{
|
|
TRACE("Unable to open %s, XComposite disabled\n", SONAME_LIBXCOMPOSITE);
|
|
usexcomposite = FALSE;
|
|
return;
|
|
}
|
|
|
|
#define LOAD_FUNCPTR(f) \
|
|
if((p##f = dlsym(xcomposite_handle, #f)) == NULL) goto sym_not_found
|
|
LOAD_FUNCPTR(XCompositeQueryExtension);
|
|
LOAD_FUNCPTR(XCompositeQueryVersion);
|
|
LOAD_FUNCPTR(XCompositeVersion);
|
|
LOAD_FUNCPTR(XCompositeRedirectWindow);
|
|
LOAD_FUNCPTR(XCompositeRedirectSubwindows);
|
|
LOAD_FUNCPTR(XCompositeUnredirectWindow);
|
|
LOAD_FUNCPTR(XCompositeUnredirectSubwindows);
|
|
LOAD_FUNCPTR(XCompositeCreateRegionFromBorderClip);
|
|
LOAD_FUNCPTR(XCompositeNameWindowPixmap);
|
|
#undef LOAD_FUNCPTR
|
|
|
|
if(!pXCompositeQueryExtension(gdi_display, &xcomp_event_base,
|
|
&xcomp_error_base)) {
|
|
TRACE("XComposite extension could not be queried; disabled\n");
|
|
dlclose(xcomposite_handle);
|
|
xcomposite_handle = NULL;
|
|
usexcomposite = FALSE;
|
|
return;
|
|
}
|
|
TRACE("XComposite is up and running error_base = %d\n", xcomp_error_base);
|
|
return;
|
|
|
|
sym_not_found:
|
|
TRACE("Unable to load function pointers from %s, XComposite disabled\n", SONAME_LIBXCOMPOSITE);
|
|
dlclose(xcomposite_handle);
|
|
xcomposite_handle = NULL;
|
|
usexcomposite = FALSE;
|
|
}
|
|
#endif /* defined(SONAME_LIBXCOMPOSITE) */
|
|
|
|
static void init_visuals( Display *display, int screen )
|
|
{
|
|
int count;
|
|
XVisualInfo *info;
|
|
|
|
argb_visual.screen = screen;
|
|
argb_visual.class = TrueColor;
|
|
argb_visual.depth = 32;
|
|
argb_visual.red_mask = 0xff0000;
|
|
argb_visual.green_mask = 0x00ff00;
|
|
argb_visual.blue_mask = 0x0000ff;
|
|
|
|
if ((info = XGetVisualInfo( display, VisualScreenMask | VisualDepthMask | VisualClassMask |
|
|
VisualRedMaskMask | VisualGreenMaskMask | VisualBlueMaskMask,
|
|
&argb_visual, &count )))
|
|
{
|
|
argb_visual = *info;
|
|
XFree( info );
|
|
}
|
|
|
|
default_visual.screen = screen;
|
|
if (default_visual.depth) /* depth specified */
|
|
{
|
|
if (default_visual.depth == 32 && argb_visual.visual)
|
|
{
|
|
default_visual = argb_visual;
|
|
}
|
|
else if ((info = XGetVisualInfo( display, VisualScreenMask | VisualDepthMask, &default_visual, &count )))
|
|
{
|
|
default_visual = *info;
|
|
XFree( info );
|
|
}
|
|
else WARN( "no visual found for depth %d\n", default_visual.depth );
|
|
}
|
|
|
|
if (!default_visual.visual)
|
|
{
|
|
default_visual.depth = DefaultDepth( display, screen );
|
|
default_visual.visual = DefaultVisual( display, screen );
|
|
default_visual.visualid = default_visual.visual->visualid;
|
|
default_visual.class = default_visual.visual->class;
|
|
default_visual.red_mask = default_visual.visual->red_mask;
|
|
default_visual.green_mask = default_visual.visual->green_mask;
|
|
default_visual.blue_mask = default_visual.visual->blue_mask;
|
|
default_visual.colormap_size = default_visual.visual->map_entries;
|
|
default_visual.bits_per_rgb = default_visual.visual->bits_per_rgb;
|
|
}
|
|
default_colormap = XCreateColormap( display, root_window, default_visual.visual, AllocNone );
|
|
|
|
TRACE( "default visual %lx class %u argb %lx\n",
|
|
default_visual.visualid, default_visual.class, argb_visual.visualid );
|
|
}
|
|
|
|
/***********************************************************************
|
|
* X11DRV process initialisation routine
|
|
*/
|
|
static NTSTATUS x11drv_init( void *arg )
|
|
{
|
|
struct init_params *params = arg;
|
|
Display *display;
|
|
void *libx11 = dlopen( SONAME_LIBX11, RTLD_NOW|RTLD_GLOBAL );
|
|
|
|
if (!libx11)
|
|
{
|
|
ERR( "failed to load %s: %s\n", SONAME_LIBX11, dlerror() );
|
|
return STATUS_UNSUCCESSFUL;
|
|
}
|
|
pXGetEventData = dlsym( libx11, "XGetEventData" );
|
|
pXFreeEventData = dlsym( libx11, "XFreeEventData" );
|
|
#ifdef SONAME_LIBXEXT
|
|
dlopen( SONAME_LIBXEXT, RTLD_NOW|RTLD_GLOBAL );
|
|
#endif
|
|
|
|
setup_options();
|
|
|
|
/* Open display */
|
|
|
|
if (!XInitThreads()) ERR( "XInitThreads failed, trouble ahead\n" );
|
|
if (!(display = XOpenDisplay( NULL ))) return STATUS_UNSUCCESSFUL;
|
|
|
|
client_foreign_window_proc = params->foreign_window_proc;
|
|
|
|
fcntl( ConnectionNumber(display), F_SETFD, 1 ); /* set close on exec flag */
|
|
root_window = DefaultRootWindow( display );
|
|
gdi_display = display;
|
|
old_error_handler = XSetErrorHandler( error_handler );
|
|
|
|
init_pixmap_formats( display );
|
|
init_visuals( display, DefaultScreen( display ));
|
|
screen_bpp = pixmap_formats[default_visual.depth]->bits_per_pixel;
|
|
|
|
XInternAtoms( display, (char **)atom_names, NB_XATOMS - FIRST_XATOM, False, X11DRV_Atoms );
|
|
|
|
init_win_context();
|
|
|
|
if (TRACE_ON(synchronous)) XSynchronize( display, True );
|
|
|
|
xinerama_init( DisplayWidth( display, default_visual.screen ),
|
|
DisplayHeight( display, default_visual.screen ));
|
|
X11DRV_Settings_Init();
|
|
|
|
/* initialize XVidMode */
|
|
X11DRV_XF86VM_Init();
|
|
/* initialize XRandR */
|
|
X11DRV_XRandR_Init();
|
|
#ifdef SONAME_LIBXCOMPOSITE
|
|
X11DRV_XComposite_Init();
|
|
#endif
|
|
X11DRV_XInput2_Init();
|
|
|
|
XkbUseExtension( gdi_display, NULL, NULL );
|
|
X11DRV_InitKeyboard( gdi_display );
|
|
if (use_xim) use_xim = xim_init( input_style );
|
|
|
|
init_user_driver();
|
|
X11DRV_DisplayDevices_Init(FALSE);
|
|
*params->show_systray = show_systray;
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* ThreadDetach (X11DRV.@)
|
|
*/
|
|
void X11DRV_ThreadDetach(void)
|
|
{
|
|
struct x11drv_thread_data *data = x11drv_thread_data();
|
|
|
|
if (data)
|
|
{
|
|
vulkan_thread_detach();
|
|
if (data->xim) XCloseIM( data->xim );
|
|
if (data->font_set) XFreeFontSet( data->display, data->font_set );
|
|
XCloseDisplay( data->display );
|
|
free( data );
|
|
/* clear data in case we get re-entered from user32 before the thread is truly dead */
|
|
NtUserGetThreadInfo()->driver_data = 0;
|
|
}
|
|
}
|
|
|
|
|
|
/* store the display fd into the message queue */
|
|
static void set_queue_display_fd( Display *display )
|
|
{
|
|
HANDLE handle;
|
|
int ret;
|
|
|
|
if (wine_server_fd_to_handle( ConnectionNumber(display), GENERIC_READ | SYNCHRONIZE, 0, &handle ))
|
|
{
|
|
MESSAGE( "x11drv: Can't allocate handle for display fd\n" );
|
|
NtTerminateProcess( 0, 1 );
|
|
}
|
|
SERVER_START_REQ( set_queue_fd )
|
|
{
|
|
req->handle = wine_server_obj_handle( handle );
|
|
ret = wine_server_call( req );
|
|
}
|
|
SERVER_END_REQ;
|
|
if (ret)
|
|
{
|
|
MESSAGE( "x11drv: Can't store handle for display fd\n" );
|
|
NtTerminateProcess( 0, 1 );
|
|
}
|
|
NtClose( handle );
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* X11DRV thread initialisation routine
|
|
*/
|
|
struct x11drv_thread_data *x11drv_init_thread_data(void)
|
|
{
|
|
struct x11drv_thread_data *data = x11drv_thread_data();
|
|
|
|
if (data) return data;
|
|
|
|
if (!(data = calloc( 1, sizeof(*data) )))
|
|
{
|
|
ERR( "could not create data\n" );
|
|
NtTerminateProcess( 0, 1 );
|
|
}
|
|
if (!(data->display = XOpenDisplay(NULL)))
|
|
{
|
|
ERR_(winediag)( "x11drv: Can't open display: %s. Please ensure that your X server is running and that $DISPLAY is set correctly.\n", XDisplayName(NULL));
|
|
NtTerminateProcess( 0, 1 );
|
|
}
|
|
|
|
fcntl( ConnectionNumber(data->display), F_SETFD, 1 ); /* set close on exec flag */
|
|
|
|
XkbUseExtension( data->display, NULL, NULL );
|
|
XkbSetDetectableAutoRepeat( data->display, True, NULL );
|
|
if (TRACE_ON(synchronous)) XSynchronize( data->display, True );
|
|
|
|
set_queue_display_fd( data->display );
|
|
NtUserGetThreadInfo()->driver_data = (UINT_PTR)data;
|
|
|
|
if (use_xim) xim_thread_attach( data );
|
|
|
|
return data;
|
|
}
|
|
|
|
|
|
/***********************************************************************
|
|
* SystemParametersInfo (X11DRV.@)
|
|
*/
|
|
BOOL X11DRV_SystemParametersInfo( UINT action, UINT int_param, void *ptr_param, UINT flags )
|
|
{
|
|
switch (action)
|
|
{
|
|
case SPI_GETSCREENSAVEACTIVE:
|
|
if (ptr_param)
|
|
{
|
|
int timeout, temp;
|
|
XGetScreenSaver(gdi_display, &timeout, &temp, &temp, &temp);
|
|
*(BOOL *)ptr_param = timeout != 0;
|
|
return TRUE;
|
|
}
|
|
break;
|
|
case SPI_SETSCREENSAVEACTIVE:
|
|
{
|
|
int timeout, interval, prefer_blanking, allow_exposures;
|
|
static int last_timeout = 15 * 60;
|
|
|
|
XLockDisplay( gdi_display );
|
|
XGetScreenSaver(gdi_display, &timeout, &interval, &prefer_blanking,
|
|
&allow_exposures);
|
|
if (timeout) last_timeout = timeout;
|
|
|
|
timeout = int_param ? last_timeout : 0;
|
|
XSetScreenSaver(gdi_display, timeout, interval, prefer_blanking,
|
|
allow_exposures);
|
|
XUnlockDisplay( gdi_display );
|
|
}
|
|
break;
|
|
}
|
|
return FALSE; /* let user32 handle it */
|
|
}
|
|
|
|
NTSTATUS X11DRV_D3DKMTCloseAdapter( const D3DKMT_CLOSEADAPTER *desc )
|
|
{
|
|
const struct vulkan_funcs *vulkan_funcs = get_vulkan_driver(WINE_VULKAN_DRIVER_VERSION);
|
|
struct x11_d3dkmt_adapter *adapter;
|
|
|
|
if (!vulkan_funcs)
|
|
return STATUS_UNSUCCESSFUL;
|
|
|
|
pthread_mutex_lock(&d3dkmt_mutex);
|
|
LIST_FOR_EACH_ENTRY(adapter, &x11_d3dkmt_adapters, struct x11_d3dkmt_adapter, entry)
|
|
{
|
|
if (adapter->handle == desc->hAdapter)
|
|
{
|
|
list_remove(&adapter->entry);
|
|
free(adapter);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (list_empty(&x11_d3dkmt_adapters))
|
|
{
|
|
vulkan_funcs->p_vkDestroyInstance(d3dkmt_vk_instance, NULL);
|
|
d3dkmt_vk_instance = NULL;
|
|
}
|
|
pthread_mutex_unlock(&d3dkmt_mutex);
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
/**********************************************************************
|
|
* X11DRV_D3DKMTSetVidPnSourceOwner
|
|
*/
|
|
NTSTATUS X11DRV_D3DKMTSetVidPnSourceOwner( const D3DKMT_SETVIDPNSOURCEOWNER *desc )
|
|
{
|
|
struct d3dkmt_vidpn_source *source, *source2;
|
|
NTSTATUS status = STATUS_SUCCESS;
|
|
BOOL found;
|
|
UINT i;
|
|
|
|
TRACE("(%p)\n", desc);
|
|
|
|
pthread_mutex_lock( &d3dkmt_mutex );
|
|
|
|
/* Check parameters */
|
|
for (i = 0; i < desc->VidPnSourceCount; ++i)
|
|
{
|
|
LIST_FOR_EACH_ENTRY( source, &d3dkmt_vidpn_sources, struct d3dkmt_vidpn_source, entry )
|
|
{
|
|
if (source->id == desc->pVidPnSourceId[i])
|
|
{
|
|
/* Same device */
|
|
if (source->device == desc->hDevice)
|
|
{
|
|
if ((source->type == D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE
|
|
&& (desc->pType[i] == D3DKMT_VIDPNSOURCEOWNER_SHARED
|
|
|| desc->pType[i] == D3DKMT_VIDPNSOURCEOWNER_EMULATED))
|
|
|| (source->type == D3DKMT_VIDPNSOURCEOWNER_EMULATED
|
|
&& desc->pType[i] == D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE))
|
|
{
|
|
status = STATUS_INVALID_PARAMETER;
|
|
goto done;
|
|
}
|
|
}
|
|
/* Different devices */
|
|
else
|
|
{
|
|
if ((source->type == D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE
|
|
|| source->type == D3DKMT_VIDPNSOURCEOWNER_EMULATED)
|
|
&& (desc->pType[i] == D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE
|
|
|| desc->pType[i] == D3DKMT_VIDPNSOURCEOWNER_EMULATED))
|
|
{
|
|
status = STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE;
|
|
goto done;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* On Windows, it seems that all video present sources are owned by DMM clients, so any attempt to set
|
|
* D3DKMT_VIDPNSOURCEOWNER_SHARED come back STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE */
|
|
if (desc->pType[i] == D3DKMT_VIDPNSOURCEOWNER_SHARED)
|
|
{
|
|
status = STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE;
|
|
goto done;
|
|
}
|
|
|
|
/* FIXME: D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVEGDI unsupported */
|
|
if (desc->pType[i] == D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVEGDI || desc->pType[i] > D3DKMT_VIDPNSOURCEOWNER_EMULATED)
|
|
{
|
|
status = STATUS_INVALID_PARAMETER;
|
|
goto done;
|
|
}
|
|
}
|
|
|
|
/* Remove owner */
|
|
if (!desc->VidPnSourceCount && !desc->pType && !desc->pVidPnSourceId)
|
|
{
|
|
LIST_FOR_EACH_ENTRY_SAFE( source, source2, &d3dkmt_vidpn_sources, struct d3dkmt_vidpn_source, entry )
|
|
{
|
|
if (source->device == desc->hDevice)
|
|
{
|
|
list_remove( &source->entry );
|
|
free( source );
|
|
}
|
|
}
|
|
goto done;
|
|
}
|
|
|
|
/* Add owner */
|
|
for (i = 0; i < desc->VidPnSourceCount; ++i)
|
|
{
|
|
found = FALSE;
|
|
LIST_FOR_EACH_ENTRY( source, &d3dkmt_vidpn_sources, struct d3dkmt_vidpn_source, entry )
|
|
{
|
|
if (source->device == desc->hDevice && source->id == desc->pVidPnSourceId[i])
|
|
{
|
|
found = TRUE;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (found)
|
|
source->type = desc->pType[i];
|
|
else
|
|
{
|
|
source = malloc( sizeof( *source ) );
|
|
if (!source)
|
|
{
|
|
status = STATUS_NO_MEMORY;
|
|
goto done;
|
|
}
|
|
|
|
source->id = desc->pVidPnSourceId[i];
|
|
source->type = desc->pType[i];
|
|
source->device = desc->hDevice;
|
|
list_add_tail( &d3dkmt_vidpn_sources, &source->entry );
|
|
}
|
|
}
|
|
|
|
done:
|
|
pthread_mutex_unlock( &d3dkmt_mutex );
|
|
return status;
|
|
}
|
|
|
|
/**********************************************************************
|
|
* X11DRV_D3DKMTCheckVidPnExclusiveOwnership
|
|
*/
|
|
NTSTATUS X11DRV_D3DKMTCheckVidPnExclusiveOwnership( const D3DKMT_CHECKVIDPNEXCLUSIVEOWNERSHIP *desc )
|
|
{
|
|
struct d3dkmt_vidpn_source *source;
|
|
|
|
TRACE("(%p)\n", desc);
|
|
|
|
if (!desc || !desc->hAdapter)
|
|
return STATUS_INVALID_PARAMETER;
|
|
|
|
pthread_mutex_lock( &d3dkmt_mutex );
|
|
LIST_FOR_EACH_ENTRY( source, &d3dkmt_vidpn_sources, struct d3dkmt_vidpn_source, entry )
|
|
{
|
|
if (source->id == desc->VidPnSourceId && source->type == D3DKMT_VIDPNSOURCEOWNER_EXCLUSIVE)
|
|
{
|
|
pthread_mutex_unlock( &d3dkmt_mutex );
|
|
return STATUS_GRAPHICS_PRESENT_OCCLUDED;
|
|
}
|
|
}
|
|
pthread_mutex_unlock( &d3dkmt_mutex );
|
|
return STATUS_SUCCESS;
|
|
}
|
|
|
|
static HANDLE get_display_device_init_mutex(void)
|
|
{
|
|
WCHAR bufferW[256];
|
|
UNICODE_STRING name = {.Buffer = bufferW};
|
|
OBJECT_ATTRIBUTES attr;
|
|
char buffer[256];
|
|
HANDLE mutex;
|
|
|
|
snprintf( buffer, ARRAY_SIZE(buffer), "\\Sessions\\%u\\BaseNamedObjects\\display_device_init",
|
|
(int)NtCurrentTeb()->Peb->SessionId );
|
|
name.Length = name.MaximumLength = asciiz_to_unicode( bufferW, buffer );
|
|
|
|
InitializeObjectAttributes( &attr, &name, OBJ_OPENIF, NULL, NULL );
|
|
if (NtCreateMutant( &mutex, MUTEX_ALL_ACCESS, &attr, FALSE ) < 0) return 0;
|
|
NtWaitForSingleObject( mutex, FALSE, NULL );
|
|
return mutex;
|
|
}
|
|
|
|
static void release_display_device_init_mutex(HANDLE mutex)
|
|
{
|
|
NtReleaseMutant( mutex, NULL );
|
|
NtClose( mutex );
|
|
}
|
|
|
|
/* Find the Vulkan device UUID corresponding to a LUID */
|
|
static BOOL get_vulkan_uuid_from_luid( const LUID *luid, GUID *uuid )
|
|
{
|
|
static const WCHAR class_guidW[] = {'C','l','a','s','s','G','U','I','D',0};
|
|
static const WCHAR devpropkey_gpu_vulkan_uuidW[] =
|
|
{
|
|
'P','r','o','p','e','r','t','i','e','s',
|
|
'\\','{','2','3','3','A','9','E','F','3','-','A','F','C','4','-','4','A','B','D',
|
|
'-','B','5','6','4','-','C','3','2','F','2','1','F','1','5','3','5','C','}',
|
|
'\\','0','0','0','2'
|
|
};
|
|
static const WCHAR devpropkey_gpu_luidW[] =
|
|
{
|
|
'P','r','o','p','e','r','t','i','e','s',
|
|
'\\','{','6','0','B','1','9','3','C','B','-','5','2','7','6','-','4','D','0','F',
|
|
'-','9','6','F','C','-','F','1','7','3','A','B','A','D','3','E','C','6','}',
|
|
'\\','0','0','0','2'
|
|
};
|
|
static const WCHAR guid_devclass_displayW[] =
|
|
{'{','4','D','3','6','E','9','6','8','-','E','3','2','5','-','1','1','C','E','-',
|
|
'B','F','C','1','-','0','8','0','0','2','B','E','1','0','3','1','8','}',0};
|
|
static const WCHAR pci_keyW[] =
|
|
{
|
|
'\\','R','e','g','i','s','t','r','y',
|
|
'\\','M','a','c','h','i','n','e',
|
|
'\\','S','y','s','t','e','m',
|
|
'\\','C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t',
|
|
'\\','E','n','u','m',
|
|
'\\','P','C','I'
|
|
};
|
|
char buffer[4096];
|
|
KEY_VALUE_PARTIAL_INFORMATION *value = (void *)buffer;
|
|
HKEY subkey, device_key, prop_key, pci_key;
|
|
KEY_NODE_INFORMATION *key = (void *)buffer;
|
|
DWORD size, i = 0;
|
|
HANDLE mutex;
|
|
|
|
mutex = get_display_device_init_mutex();
|
|
|
|
pci_key = reg_open_key(NULL, pci_keyW, sizeof(pci_keyW));
|
|
while (!NtEnumerateKey(pci_key, i++, KeyNodeInformation, key, sizeof(buffer), &size))
|
|
{
|
|
unsigned int j = 0;
|
|
|
|
if (!(subkey = reg_open_key(pci_key, key->Name, key->NameLength)))
|
|
continue;
|
|
|
|
while (!NtEnumerateKey(subkey, j++, KeyNodeInformation, key, sizeof(buffer), &size))
|
|
{
|
|
if (!(device_key = reg_open_key(subkey, key->Name, key->NameLength)))
|
|
continue;
|
|
|
|
size = query_reg_value(device_key, class_guidW, value, sizeof(buffer));
|
|
if (size != sizeof(guid_devclass_displayW) ||
|
|
wcscmp((WCHAR *)value->Data, guid_devclass_displayW))
|
|
{
|
|
NtClose(device_key);
|
|
continue;
|
|
}
|
|
|
|
if (!(prop_key = reg_open_key(device_key, devpropkey_gpu_luidW,
|
|
sizeof(devpropkey_gpu_luidW))))
|
|
{
|
|
NtClose(device_key);
|
|
continue;
|
|
}
|
|
|
|
size = query_reg_value(prop_key, NULL, value, sizeof(buffer));
|
|
NtClose(prop_key);
|
|
if (size != sizeof(LUID) || memcmp(value->Data, luid, sizeof(LUID)))
|
|
{
|
|
NtClose(device_key);
|
|
continue;
|
|
}
|
|
|
|
if (!(prop_key = reg_open_key(device_key, devpropkey_gpu_vulkan_uuidW,
|
|
sizeof(devpropkey_gpu_vulkan_uuidW))))
|
|
{
|
|
NtClose(device_key);
|
|
continue;
|
|
}
|
|
|
|
size = query_reg_value(prop_key, NULL, value, sizeof(buffer));
|
|
NtClose(prop_key);
|
|
if (size != sizeof(GUID))
|
|
{
|
|
NtClose(device_key);
|
|
continue;
|
|
}
|
|
|
|
*uuid = *(const GUID *)value->Data;
|
|
NtClose(device_key);
|
|
NtClose(subkey);
|
|
NtClose(pci_key);
|
|
release_display_device_init_mutex(mutex);
|
|
return TRUE;
|
|
}
|
|
NtClose(subkey);
|
|
}
|
|
NtClose(pci_key);
|
|
|
|
release_display_device_init_mutex(mutex);
|
|
return FALSE;
|
|
}
|
|
|
|
NTSTATUS X11DRV_D3DKMTOpenAdapterFromLuid( D3DKMT_OPENADAPTERFROMLUID *desc )
|
|
{
|
|
static const char *extensions[] =
|
|
{
|
|
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME,
|
|
VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME,
|
|
};
|
|
const struct vulkan_funcs *vulkan_funcs;
|
|
PFN_vkGetPhysicalDeviceProperties2KHR pvkGetPhysicalDeviceProperties2KHR;
|
|
PFN_vkEnumeratePhysicalDevices pvkEnumeratePhysicalDevices;
|
|
VkPhysicalDevice *vk_physical_devices = NULL;
|
|
VkPhysicalDeviceProperties2 properties2;
|
|
NTSTATUS status = STATUS_UNSUCCESSFUL;
|
|
UINT device_count, device_idx = 0;
|
|
struct x11_d3dkmt_adapter *adapter;
|
|
VkInstanceCreateInfo create_info;
|
|
VkPhysicalDeviceIDProperties id;
|
|
VkResult vr;
|
|
GUID uuid;
|
|
|
|
if (!get_vulkan_uuid_from_luid(&desc->AdapterLuid, &uuid))
|
|
{
|
|
WARN("Failed to find Vulkan device with LUID %08x:%08x.\n",
|
|
(int)desc->AdapterLuid.HighPart, (int)desc->AdapterLuid.LowPart);
|
|
return STATUS_INVALID_PARAMETER;
|
|
}
|
|
|
|
/* Find the Vulkan device with corresponding UUID */
|
|
if (!(vulkan_funcs = get_vulkan_driver(WINE_VULKAN_DRIVER_VERSION)))
|
|
{
|
|
WARN("Vulkan is unavailable.\n");
|
|
return STATUS_UNSUCCESSFUL;
|
|
}
|
|
|
|
pthread_mutex_lock(&d3dkmt_mutex);
|
|
|
|
if (!d3dkmt_vk_instance)
|
|
{
|
|
memset(&create_info, 0, sizeof(create_info));
|
|
create_info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
|
|
create_info.enabledExtensionCount = ARRAY_SIZE(extensions);
|
|
create_info.ppEnabledExtensionNames = extensions;
|
|
|
|
vr = vulkan_funcs->p_vkCreateInstance(&create_info, NULL, &d3dkmt_vk_instance);
|
|
if (vr != VK_SUCCESS)
|
|
{
|
|
WARN("Failed to create a Vulkan instance, vr %d.\n", vr);
|
|
goto done;
|
|
}
|
|
}
|
|
|
|
#define LOAD_VK_FUNC(f) \
|
|
if (!(p##f = (void *)vulkan_funcs->p_vkGetInstanceProcAddr(d3dkmt_vk_instance, #f))) \
|
|
{ \
|
|
WARN("Failed to load " #f ".\n"); \
|
|
goto done; \
|
|
}
|
|
|
|
LOAD_VK_FUNC(vkEnumeratePhysicalDevices)
|
|
LOAD_VK_FUNC(vkGetPhysicalDeviceProperties2KHR)
|
|
#undef LOAD_VK_FUNC
|
|
|
|
vr = pvkEnumeratePhysicalDevices(d3dkmt_vk_instance, &device_count, NULL);
|
|
if (vr != VK_SUCCESS || !device_count)
|
|
{
|
|
WARN("No Vulkan device found, vr %d, device_count %d.\n", vr, device_count);
|
|
goto done;
|
|
}
|
|
|
|
if (!(vk_physical_devices = calloc(device_count, sizeof(*vk_physical_devices))))
|
|
goto done;
|
|
|
|
vr = pvkEnumeratePhysicalDevices(d3dkmt_vk_instance, &device_count, vk_physical_devices);
|
|
if (vr != VK_SUCCESS)
|
|
{
|
|
WARN("vkEnumeratePhysicalDevices failed, vr %d.\n", vr);
|
|
goto done;
|
|
}
|
|
|
|
for (device_idx = 0; device_idx < device_count; ++device_idx)
|
|
{
|
|
memset(&id, 0, sizeof(id));
|
|
id.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES;
|
|
properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PROPERTIES_2;
|
|
properties2.pNext = &id;
|
|
|
|
pvkGetPhysicalDeviceProperties2KHR(vk_physical_devices[device_idx], &properties2);
|
|
if (!IsEqualGUID(&uuid, id.deviceUUID))
|
|
continue;
|
|
|
|
if (!(adapter = malloc(sizeof(*adapter))))
|
|
{
|
|
status = STATUS_NO_MEMORY;
|
|
goto done;
|
|
}
|
|
|
|
adapter->handle = desc->hAdapter;
|
|
adapter->vk_device = vk_physical_devices[device_idx];
|
|
list_add_head(&x11_d3dkmt_adapters, &adapter->entry);
|
|
status = STATUS_SUCCESS;
|
|
break;
|
|
}
|
|
|
|
done:
|
|
if (d3dkmt_vk_instance && list_empty(&x11_d3dkmt_adapters))
|
|
{
|
|
vulkan_funcs->p_vkDestroyInstance(d3dkmt_vk_instance, NULL);
|
|
d3dkmt_vk_instance = NULL;
|
|
}
|
|
pthread_mutex_unlock(&d3dkmt_mutex);
|
|
free(vk_physical_devices);
|
|
return status;
|
|
}
|
|
|
|
NTSTATUS X11DRV_D3DKMTQueryVideoMemoryInfo( D3DKMT_QUERYVIDEOMEMORYINFO *desc )
|
|
{
|
|
const struct vulkan_funcs *vulkan_funcs = get_vulkan_driver(WINE_VULKAN_DRIVER_VERSION);
|
|
PFN_vkGetPhysicalDeviceMemoryProperties2KHR pvkGetPhysicalDeviceMemoryProperties2KHR;
|
|
VkPhysicalDeviceMemoryBudgetPropertiesEXT budget;
|
|
VkPhysicalDeviceMemoryProperties2 properties2;
|
|
NTSTATUS status = STATUS_INVALID_PARAMETER;
|
|
struct x11_d3dkmt_adapter *adapter;
|
|
unsigned int i;
|
|
|
|
desc->Budget = 0;
|
|
desc->CurrentUsage = 0;
|
|
desc->CurrentReservation = 0;
|
|
desc->AvailableForReservation = 0;
|
|
|
|
if (!vulkan_funcs)
|
|
{
|
|
WARN("Vulkan is unavailable.\n");
|
|
return STATUS_UNSUCCESSFUL;
|
|
}
|
|
|
|
pthread_mutex_lock(&d3dkmt_mutex);
|
|
LIST_FOR_EACH_ENTRY(adapter, &x11_d3dkmt_adapters, struct x11_d3dkmt_adapter, entry)
|
|
{
|
|
if (adapter->handle != desc->hAdapter)
|
|
continue;
|
|
|
|
if (!(pvkGetPhysicalDeviceMemoryProperties2KHR = (void *)vulkan_funcs->p_vkGetInstanceProcAddr(d3dkmt_vk_instance, "vkGetPhysicalDeviceMemoryProperties2KHR")))
|
|
{
|
|
WARN("Failed to load vkGetPhysicalDeviceMemoryProperties2KHR.\n");
|
|
status = STATUS_UNSUCCESSFUL;
|
|
goto done;
|
|
}
|
|
|
|
memset(&budget, 0, sizeof(budget));
|
|
budget.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT;
|
|
properties2.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_PROPERTIES_2;
|
|
properties2.pNext = &budget;
|
|
pvkGetPhysicalDeviceMemoryProperties2KHR(adapter->vk_device, &properties2);
|
|
for (i = 0; i < properties2.memoryProperties.memoryHeapCount; ++i)
|
|
{
|
|
if ((desc->MemorySegmentGroup == D3DKMT_MEMORY_SEGMENT_GROUP_LOCAL
|
|
&& properties2.memoryProperties.memoryHeaps[i].flags & VK_MEMORY_HEAP_DEVICE_LOCAL_BIT)
|
|
|| (desc->MemorySegmentGroup == D3DKMT_MEMORY_SEGMENT_GROUP_NON_LOCAL
|
|
&& !(properties2.memoryProperties.memoryHeaps[i].flags & VK_MEMORY_HEAP_DEVICE_LOCAL_BIT)))
|
|
{
|
|
desc->Budget += budget.heapBudget[i];
|
|
desc->CurrentUsage += budget.heapUsage[i];
|
|
}
|
|
}
|
|
desc->AvailableForReservation = desc->Budget / 2;
|
|
status = STATUS_SUCCESS;
|
|
break;
|
|
}
|
|
done:
|
|
pthread_mutex_unlock(&d3dkmt_mutex);
|
|
return status;
|
|
}
|
|
|
|
NTSTATUS x11drv_client_func( enum x11drv_client_funcs id, const void *params, ULONG size )
|
|
{
|
|
void *ret_ptr;
|
|
ULONG ret_len;
|
|
return KeUserModeCallback( id, params, size, &ret_ptr, &ret_len );
|
|
}
|
|
|
|
|
|
NTSTATUS x11drv_client_call( enum client_callback func, UINT arg )
|
|
{
|
|
struct client_callback_params params = { .id = func, .arg = arg };
|
|
return x11drv_client_func( client_func_callback, ¶ms, sizeof(params) );
|
|
}
|
|
|
|
|
|
const unixlib_entry_t __wine_unix_call_funcs[] =
|
|
{
|
|
x11drv_init,
|
|
x11drv_systray_clear,
|
|
x11drv_systray_dock,
|
|
x11drv_systray_hide,
|
|
x11drv_systray_init,
|
|
x11drv_tablet_attach_queue,
|
|
x11drv_tablet_get_packet,
|
|
x11drv_tablet_info,
|
|
x11drv_tablet_load_info,
|
|
};
|
|
|
|
|
|
C_ASSERT( ARRAYSIZE(__wine_unix_call_funcs) == unix_funcs_count );
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
static NTSTATUS x11drv_wow64_init( void *arg )
|
|
{
|
|
struct
|
|
{
|
|
ULONG foreign_window_proc;
|
|
ULONG show_systray;
|
|
} *params32 = arg;
|
|
struct init_params params;
|
|
|
|
params.foreign_window_proc = UlongToPtr( params32->foreign_window_proc );
|
|
params.show_systray = UlongToPtr( params32->show_systray );
|
|
return x11drv_init( ¶ms );
|
|
}
|
|
|
|
static NTSTATUS x11drv_wow64_systray_clear( void *arg )
|
|
{
|
|
HWND hwnd = UlongToPtr( *(ULONG *)arg );
|
|
return x11drv_systray_clear( &hwnd );
|
|
}
|
|
|
|
static NTSTATUS x11drv_wow64_systray_dock( void *arg )
|
|
{
|
|
struct
|
|
{
|
|
UINT64 event_handle;
|
|
ULONG icon;
|
|
int cx;
|
|
int cy;
|
|
ULONG layered;
|
|
} *params32 = arg;
|
|
struct systray_dock_params params;
|
|
|
|
params.event_handle = params32->event_handle;
|
|
params.icon = UlongToPtr( params32->icon );
|
|
params.cx = params32->cx;
|
|
params.cy = params32->cy;
|
|
params.layered = UlongToPtr( params32->layered );
|
|
return x11drv_systray_dock( ¶ms );
|
|
}
|
|
|
|
static NTSTATUS x11drv_wow64_systray_hide( void *arg )
|
|
{
|
|
HWND hwnd = UlongToPtr( *(ULONG *)arg );
|
|
return x11drv_systray_hide( &hwnd );
|
|
}
|
|
|
|
static NTSTATUS x11drv_wow64_tablet_get_packet( void *arg )
|
|
{
|
|
FIXME( "%p\n", arg );
|
|
return 0;
|
|
}
|
|
|
|
static NTSTATUS x11drv_wow64_tablet_info( void *arg )
|
|
{
|
|
struct
|
|
{
|
|
UINT category;
|
|
UINT index;
|
|
ULONG output;
|
|
} *params32 = arg;
|
|
struct tablet_info_params params;
|
|
|
|
params.category = params32->category;
|
|
params.index = params32->index;
|
|
params.output = UlongToPtr( params32->output );
|
|
return x11drv_tablet_info( ¶ms );
|
|
}
|
|
|
|
const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
|
|
{
|
|
x11drv_wow64_init,
|
|
x11drv_wow64_systray_clear,
|
|
x11drv_wow64_systray_dock,
|
|
x11drv_wow64_systray_hide,
|
|
x11drv_systray_init,
|
|
x11drv_tablet_attach_queue,
|
|
x11drv_wow64_tablet_get_packet,
|
|
x11drv_wow64_tablet_info,
|
|
x11drv_tablet_load_info,
|
|
};
|
|
|
|
C_ASSERT( ARRAYSIZE(__wine_unix_call_wow64_funcs) == unix_funcs_count );
|
|
|
|
#endif /* _WIN64 */
|