Compare commits
2 Commits
master
...
submit/dri
Author | SHA1 | Date | |
---|---|---|---|
|
dc0de34d84 | ||
|
5db19b5573 |
|
@ -142,12 +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
|
|
||||||
drm_format_for_depth(uint32_t depth, uint32_t bpp);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif /* _DRI3_H_ */
|
#endif /* _DRI3_H_ */
|
||||||
|
|
|
@ -105,4 +105,10 @@ 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);
|
||||||
|
|
||||||
|
uint32_t
|
||||||
|
drm_format_for_depth(uint32_t depth, uint32_t bpp);
|
||||||
|
|
||||||
#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