glamor: unexport glamor_pixmap_exchange_fbos()
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
d0d4ced9d3
commit
fca8571a1a
|
@ -136,9 +136,6 @@ extern _X_EXPORT Bool glamor_destroy_pixmap(PixmapPtr pixmap);
|
||||||
extern _X_EXPORT void glamor_egl_exchange_buffers(PixmapPtr front,
|
extern _X_EXPORT void glamor_egl_exchange_buffers(PixmapPtr front,
|
||||||
PixmapPtr back);
|
PixmapPtr back);
|
||||||
|
|
||||||
extern _X_EXPORT void glamor_pixmap_exchange_fbos(PixmapPtr front,
|
|
||||||
PixmapPtr back);
|
|
||||||
|
|
||||||
/* The DDX is not supposed to call these four functions */
|
/* The DDX is not supposed to call these four functions */
|
||||||
extern _X_EXPORT void glamor_enable_dri3(ScreenPtr screen);
|
extern _X_EXPORT void glamor_enable_dri3(ScreenPtr screen);
|
||||||
extern _X_EXPORT int glamor_egl_fds_from_pixmap(ScreenPtr, PixmapPtr, int *,
|
extern _X_EXPORT int glamor_egl_fds_from_pixmap(ScreenPtr, PixmapPtr, int *,
|
||||||
|
|
|
@ -42,10 +42,9 @@
|
||||||
#include <gbm.h>
|
#include <gbm.h>
|
||||||
#include <drm_fourcc.h>
|
#include <drm_fourcc.h>
|
||||||
|
|
||||||
#include "glamor_egl.h"
|
#include "glamor/glamor_priv.h"
|
||||||
|
|
||||||
#include "glamor.h"
|
#include "glamor_egl.h"
|
||||||
#include "glamor_priv.h"
|
|
||||||
#include "glamor_glx_provider.h"
|
#include "glamor_glx_provider.h"
|
||||||
#include "dri3.h"
|
#include "dri3.h"
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "glamor_priv.h"
|
#include "glamor/glamor_priv.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
glamor_destroy_fbo(glamor_screen_private *glamor_priv,
|
glamor_destroy_fbo(glamor_screen_private *glamor_priv,
|
||||||
|
|
|
@ -990,6 +990,8 @@ void glamor_set_pixmap_type(PixmapPtr pixmap, glamor_pixmap_type_t type);
|
||||||
* but before adding a glamor GLX provider */
|
* but before adding a glamor GLX provider */
|
||||||
void glamor_set_glvnd_vendor(ScreenPtr screen, const char *vendor);
|
void glamor_set_glvnd_vendor(ScreenPtr screen, const char *vendor);
|
||||||
|
|
||||||
|
void glamor_pixmap_exchange_fbos(PixmapPtr front, PixmapPtr back);
|
||||||
|
|
||||||
#include "glamor_utils.h"
|
#include "glamor_utils.h"
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
Loading…
Reference in New Issue