aboutsummaryrefslogtreecommitdiff
path: root/src/render.h
blob: 1e7164b788383f9ffe09a1cddf9352e2fc4a9dd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * @file render.h
 * @author Joe Wingbermuehle
 * @date 2005-2006
 *
 * @brief Functions to render icons using the XRender extension.
 *
 */

#ifndef RENDER_H
#define RENDER_H

struct IconNode;
struct ScaledIconNode;

void QueryRenderExtension();

int PutScaledRenderIcon(struct IconNode *icon, struct ScaledIconNode *node,
	Drawable d, int x, int y);

struct ScaledIconNode *CreateScaledRenderIcon(struct IconNode *icon,
	int width, int height);

#endif