dix: unexport ResizeVisualArray()
Not used by any drivers, and shouldn't be used by them. Needs to _X_EXPORT'ed, as long as glx is a separate module. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
b04aeed760
commit
14e0b1715b
|
@ -108,4 +108,7 @@ int StoreColors(ColormapPtr pmap, int count, xColorItem * defs, ClientPtr client
|
|||
|
||||
int IsMapInstalled(Colormap map, WindowPtr pWin);
|
||||
|
||||
/* only exported for glx, but should not be used by external drivers */
|
||||
_X_EXPORT Bool ResizeVisualArray(ScreenPtr pScreen, int new_vis_count, DepthPtr depth);
|
||||
|
||||
#endif /* _XSERVER_DIX_COLORMAP_PRIV_H */
|
||||
|
|
|
@ -32,8 +32,11 @@
|
|||
|
||||
#include "dix/screen_hooks_priv.h"
|
||||
|
||||
#include <GL/glxtokens.h>
|
||||
#include <string.h>
|
||||
#include <GL/glxtokens.h>
|
||||
|
||||
#include "dix/colormap_priv.h"
|
||||
|
||||
#include <windowstr.h>
|
||||
#include <os.h>
|
||||
|
||||
|
|
|
@ -55,8 +55,4 @@ SOFTWARE.
|
|||
|
||||
typedef CARD32 Pixel;
|
||||
|
||||
extern _X_EXPORT Bool ResizeVisualArray(ScreenPtr /* pScreen */ ,
|
||||
int /* new_vis_count */ ,
|
||||
DepthPtr /* depth */ );
|
||||
|
||||
#endif /* CMAP_H */
|
||||
|
|
Loading…
Reference in New Issue