mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2025-06-09 08:56:11 +00:00
Signed-off-by: Zhao Yakui <yakui.zhao@intel.com> Signed-off-by: Ben Widawsky <benjamin.widawsky@intel.com> Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
36 lines
897 B
C
36 lines
897 B
C
#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);
|
|
|
|
#endif /* RENDE_MEDIA_FILL_H */
|