summaryrefslogtreecommitdiff
path: root/hw/xscreen/xs-font.h
blob: a9eeaf10ea6184f4d96155be180854d7b0cd2d99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _XS_FONT_INCL_
#define _XS_FONT_INCL_

typedef struct {
    xcb_font_t font;
} XscreenPrivFont;


#define XS_FONT_PRIV(pFont) \
  ((XscreenPrivFont *)FontGetPrivate(pFont, xsFontPrivateIndex))

Bool xsRealizeFont(ScreenPtr pScreen, FontPtr pFont);
Bool xsUnrealizeFont(ScreenPtr pScreen, FontPtr pFont);


#endif