summaryrefslogtreecommitdiff
path: root/lib/media_fill.h
blob: 2a3005504b91f7c390f33e351977247010d27d1b (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef RENDE_MEDIA_FILL_H
#define RENDE_MEDIA_FILL_H

#include <stdint.h>
#include "intel_batchbuffer.h"

void
gen8_media_fillfunc(struct intel_batchbuffer *batch,
		struct igt_buf *dst,
		unsigned x, unsigned y,
		unsigned width, unsigned height,
		uint8_t color);

void
gen7_media_fillfunc(struct intel_batchbuffer *batch,
                struct igt_buf *dst,
                unsigned x, unsigned y,
                unsigned width, unsigned height,
                uint8_t color);

void
gen8lp_media_fillfunc(struct intel_batchbuffer *batch,
		struct igt_buf *dst,
		unsigned x, unsigned y,
		unsigned width, unsigned height,
		uint8_t color);

void
gen9_media_fillfunc(struct intel_batchbuffer *batch,
                struct igt_buf *dst,
                unsigned x, unsigned y,
                unsigned width, unsigned height,
                uint8_t color);

void
gen7_gpgpu_fillfunc(struct intel_batchbuffer *batch,
		    struct igt_buf *dst,
		    unsigned x, unsigned y,
		    unsigned width, unsigned height,
		    uint8_t color);

#endif /* RENDE_MEDIA_FILL_H */