1#ifndef GEN4_SOURCE_H
2#define GEN4_SOURCE_H
3
4#include "compiler.h"
5
6#include "sna.h"
7#include "sna_render.h"
8
9bool
10gen4_channel_init_solid(struct sna *sna,
11			struct sna_composite_channel *channel,
12			uint32_t color);
13
14bool
15gen4_channel_init_linear(struct sna *sna,
16			 PicturePtr picture,
17			 struct sna_composite_channel *channel,
18			 int x, int y,
19			 int w, int h,
20			 int dst_x, int dst_y);
21
22#endif /* GEN4_SOURCE_H */
23