dri: unexport dri3_send_open_reply()
Not used by any external drivers, so no need to keep it exported. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
37b7ea8f8a
commit
5db19b5573
|
@ -142,9 +142,6 @@ typedef struct dri3_screen_info {
|
||||||
extern _X_EXPORT Bool
|
extern _X_EXPORT Bool
|
||||||
dri3_screen_init(ScreenPtr screen, const dri3_screen_info_rec *info);
|
dri3_screen_init(ScreenPtr screen, const dri3_screen_info_rec *info);
|
||||||
|
|
||||||
extern _X_EXPORT int
|
|
||||||
dri3_send_open_reply(ClientPtr client, int fd);
|
|
||||||
|
|
||||||
extern _X_EXPORT uint32_t
|
extern _X_EXPORT uint32_t
|
||||||
drm_format_for_depth(uint32_t depth, uint32_t bpp);
|
drm_format_for_depth(uint32_t depth, uint32_t bpp);
|
||||||
|
|
||||||
|
|
|
@ -105,4 +105,7 @@ dri3_get_supported_modifiers(ScreenPtr screen, DrawablePtr drawable,
|
||||||
int
|
int
|
||||||
dri3_import_syncobj(ClientPtr client, ScreenPtr screen, XID id, int fd);
|
dri3_import_syncobj(ClientPtr client, ScreenPtr screen, XID id, int fd);
|
||||||
|
|
||||||
|
int
|
||||||
|
dri3_send_open_reply(ClientPtr client, int fd);
|
||||||
|
|
||||||
#endif /* _DRI3PRIV_H_ */
|
#endif /* _DRI3PRIV_H_ */
|
||||||
|
|
|
@ -55,6 +55,8 @@
|
||||||
#include <dri3.h>
|
#include <dri3.h>
|
||||||
#include "drm-client-protocol.h"
|
#include "drm-client-protocol.h"
|
||||||
|
|
||||||
|
#include "dri3/dri3_priv.h"
|
||||||
|
|
||||||
#include "xwayland-glamor.h"
|
#include "xwayland-glamor.h"
|
||||||
#include "xwayland-glamor-gbm.h"
|
#include "xwayland-glamor-gbm.h"
|
||||||
#include "xwayland-pixmap.h"
|
#include "xwayland-pixmap.h"
|
||||||
|
|
Loading…
Reference in New Issue