diff options
author | Enrico Weigelt, metux IT consult <info@metux.net> | 2024-03-07 17:07:04 +0100 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-04-15 18:11:57 -0700 |
commit | d444cd4237e008f148ed000fb4b15efa7981072a (patch) | |
tree | 41c63c68476f4197d6f84a3d8da51bda0fbd7eae /glx | |
parent | dfdde27990ce2b5c3543226b4ee12252bd34352a (diff) |
dix: unexport some lookup functions
These aren't used by any drivers, so no need to export them.
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1380>
Diffstat (limited to 'glx')
-rw-r--r-- | glx/glxcmds.c | 6 | ||||
-rw-r--r-- | glx/xfont.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/glx/glxcmds.c b/glx/glxcmds.c index 1e46d0c72..a5069eb10 100644 --- a/glx/glxcmds.c +++ b/glx/glxcmds.c @@ -34,10 +34,12 @@ #include <string.h> #include <assert.h> - -#include "glxserver.h" #include <GL/glxtokens.h> #include <X11/extensions/presenttokens.h> + +#include "dix/dix_priv.h" + +#include "glxserver.h" #include <unpack.h> #include <pixmapstr.h> #include <windowstr.h> diff --git a/glx/xfont.c b/glx/xfont.c index bd2fdae52..bd090cb15 100644 --- a/glx/xfont.c +++ b/glx/xfont.c @@ -32,6 +32,8 @@ #include <dix-config.h> #endif +#include "dix/dix_priv.h" + #include "glxserver.h" #include "glxutil.h" #include "unpack.h" |