+ added XftPatternPrint(), XftFontSetPrint()
This commit is contained in:
parent
43515aeda1
commit
1476de7152
14
c/libs/xft.c
14
c/libs/xft.c
|
@ -373,6 +373,17 @@ s48_value scx_XftColorFree(s48_value sdpy, s48_value svisual,
|
||||||
|
|
||||||
/* TODO: XftColorAllocValue */
|
/* TODO: XftColorAllocValue */
|
||||||
|
|
||||||
|
s48_value scx_XftPatternPrint(s48_value sxp)
|
||||||
|
{
|
||||||
|
XftPatternPrint(scx_extract_xftpattern(sxp));
|
||||||
|
return S48_UNSPECIFIC;
|
||||||
|
}
|
||||||
|
|
||||||
|
s48_value scx_XftFontSetPrint(s48_value sxfs)
|
||||||
|
{
|
||||||
|
XftFontSetPrint(scx_extract_xftfontset(sxfs));
|
||||||
|
return S48_UNSPECIFIC;
|
||||||
|
}
|
||||||
|
|
||||||
void scx_xft_init(void)
|
void scx_xft_init(void)
|
||||||
{
|
{
|
||||||
|
@ -432,4 +443,7 @@ void scx_xft_init(void)
|
||||||
|
|
||||||
S48_EXPORT_FUNCTION(scx_XftColorAllocName);
|
S48_EXPORT_FUNCTION(scx_XftColorAllocName);
|
||||||
S48_EXPORT_FUNCTION(scx_XftColorFree);
|
S48_EXPORT_FUNCTION(scx_XftColorFree);
|
||||||
|
|
||||||
|
S48_EXPORT_FUNCTION(scx_XftPatternPrint);
|
||||||
|
S48_EXPORT_FUNCTION(scx_XftFontSetPrint);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue