Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/include/ui/shader.h
2023-03-06 14:48:14 +01:00

14 lines
287 B
C

#ifndef QEMU_SHADER_H
#define QEMU_SHADER_H
#include <epoxy/gl.h>
typedef struct QemuGLShader QemuGLShader;
void qemu_gl_run_texture_blit(QemuGLShader *gls, bool flip);
QemuGLShader *qemu_gl_init_shader(void);
void qemu_gl_fini_shader(QemuGLShader *gls);
#endif /* QEMU_SHADER_H */