lib/igt_kms: Clean up the other _name functions/macros
[platform/upstream/intel-gpu-tools.git] / lib / media_fill.h
1 #ifndef RENDE_MEDIA_FILL_H
2 #define RENDE_MEDIA_FILL_H
3
4 #include <stdint.h>
5 #include "intel_batchbuffer.h"
6
7 void
8 gen8_media_fillfunc(struct intel_batchbuffer *batch,
9                 struct igt_buf *dst,
10                 unsigned x, unsigned y,
11                 unsigned width, unsigned height,
12                 uint8_t color);
13
14 void
15 gen7_media_fillfunc(struct intel_batchbuffer *batch,
16                 struct igt_buf *dst,
17                 unsigned x, unsigned y,
18                 unsigned width, unsigned height,
19                 uint8_t color);
20
21 void
22 gen8lp_media_fillfunc(struct intel_batchbuffer *batch,
23                 struct igt_buf *dst,
24                 unsigned x, unsigned y,
25                 unsigned width, unsigned height,
26                 uint8_t color);
27
28 #endif /* RENDE_MEDIA_FILL_H */