mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 03:10:09 +01:00
egl: Quit checking for a bug in old xcb when we require new xcb.
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
This commit is contained in:
parent
b477384f40
commit
da3f7c127b
2 changed files with 0 additions and 9 deletions
|
|
@ -1509,11 +1509,6 @@ for plat in $egl_platforms; do
|
|||
|
||||
x11)
|
||||
PKG_CHECK_MODULES([XCB_DRI2], [x11-xcb xcb-dri2 >= 1.8 xcb-xfixes])
|
||||
# workaround a bug in xcb-dri2 generated by xcb-proto 1.6
|
||||
save_LIBS="$LIBS"
|
||||
AC_CHECK_LIB(xcb-dri2, xcb_dri2_connect_alignment_pad, [],
|
||||
[DEFINES="$DEFINES -DXCB_DRI2_CONNECT_DEVICE_NAME_BROKEN"])
|
||||
LIBS="$save_LIBS"
|
||||
;;
|
||||
|
||||
drm)
|
||||
|
|
|
|||
|
|
@ -543,11 +543,7 @@ dri2_connect(struct dri2_egl_display *dri2_dpy)
|
|||
dri2_strndup(driver_name,
|
||||
xcb_dri2_connect_driver_name_length (connect));
|
||||
|
||||
#if XCB_DRI2_CONNECT_DEVICE_NAME_BROKEN
|
||||
device_name = driver_name + ((connect->driver_name_length + 3) & ~3);
|
||||
#else
|
||||
device_name = xcb_dri2_connect_device_name (connect);
|
||||
#endif
|
||||
|
||||
dri2_dpy->device_name =
|
||||
dri2_strndup(device_name,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue