Fix DSO linker error (ld) with missing "-lfontconfig" for fontconfig
[fvwm.git] / libs / FRenderInterface.h
blob9d931a7e31efffa842a2c90e75dc71447002cc95
1 /* -*-c-*- */
2 /* Copyright (C) 2002 Olivier Chapuis */
4 #ifndef F_RENDER_INTERFACE_H
5 #define F_RENDER_INTERFACE_H
7 Bool FRenderTintRectangle(
8 Display *dpy, Window win, Pixmap mask, Pixel tint, int shade_percent,
9 Drawable d, int dest_x, int dest_y, int dest_w, int dest_h);
11 int FRenderRender(
12 Display *dpy, Window win, Pixmap pixmap, Pixmap mask, Pixmap alpha,
13 int depth, int shade_percent, Pixel tint, int tint_percent,
14 Drawable d, GC gc, GC alpha_gc,
15 int src_x, int src_y, int src_w, int src_h,
16 int dest_x, int dest_y, int dest_w, int dest_h,
17 Bool do_repeat);
19 #endif