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_ */
|