mirror of
https://github.com/X11Libre/xf86-video-vmware.git
synced 2026-03-24 01:24:37 +00:00
Add a handler that, on hotplug events, scans for a new GUI layout and tries to set that layout using XRandR similar to what the RandR1.2 part of vmware tools resolutionSet module is doing today. v2: Address review comments - Keep the old layout in case of screen resizing errors - Fix the vmwgfx_layout handler() declaration. Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> Reviewed-by: Sinclair Yeh <syeh@vmware.com>
36 lines
818 B
Makefile
36 lines
818 B
Makefile
|
|
if BUILD_VMWGFX
|
|
noinst_LTLIBRARIES = libvmwgfx.la
|
|
libvmwgfx_la_CFLAGS = $(CWARNFLAGS) $(XORG_CFLAGS) @LIBDRM_CFLAGS@ @XATRACKER_CFLAGS@ -I$(top_srcdir)/src -I$(top_srcdir)/saa
|
|
libvmwgfx_la_LIBADD = @LIBDRM_LIBS@ $(top_builddir)/saa/libsaa.la\
|
|
@XATRACKER_LIBS@
|
|
libvmwgfx_la_DEPENDENCIES = $(top_builddir)/saa/libsaa.la
|
|
|
|
libvmwgfx_la_SOURCES = \
|
|
svga3d_reg.h \
|
|
vmwgfx_driver.c \
|
|
vmwgfx_driver.h \
|
|
vmwgfx_drm.h \
|
|
vmwgfx_crtc.c \
|
|
vmwgfx_output.c \
|
|
vmwgfx_dri2.c \
|
|
vmwgfx_tex_video.c \
|
|
vmwgfx_saa.c \
|
|
vmwgfx_saa.h \
|
|
vmwgfx_saa_priv.h \
|
|
vmwgfx_drmi.c \
|
|
vmwgfx_drmi.h \
|
|
vmwgfx_overlay.c \
|
|
vmwgfx_ctrl.c \
|
|
vmwgfx_ctrl.h \
|
|
vmwgfx_xa_composite.c \
|
|
vmwgfx_xa_surface.c \
|
|
vmwgfx_hosted.c \
|
|
vmwgfx_hosted.h \
|
|
vmwgfx_hosted_priv.h \
|
|
vmwgfx_xmir.c \
|
|
vmwgfx_xwayland.c \
|
|
vmwgfx_layout.c \
|
|
wsbm_util.h
|
|
endif
|