mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 08:04:30 +00:00
This is needed to get proton working in Xfbdev, but is probably useful in other places too. Xephyr has some unrelated issues regaring Xinput, so steam doesn't work there. Signed-off-by: stefan11111 <stefan11111@shitposting.expert>
14 lines
329 B
C
14 lines
329 B
C
/* SPDX-License-Identifier: MIT OR X11
|
|
*
|
|
* Copyright © 2024 Enrico Weigelt, metux IT consult <info@metux.net>
|
|
*/
|
|
#ifndef _XSERVER_DRI2_PRIV_H_
|
|
#define _XSERVER_DRI2_PRIV_H_
|
|
|
|
#include "dri2.h"
|
|
|
|
extern CARD8 dri2_major; /* version of DRI2 supported by DDX */
|
|
extern CARD8 dri2_minor;
|
|
|
|
#endif /* _XSERVER_DRI2_PRIV_H_ */
|