Add qemu 2.4.0
[kvmfornfv.git] / qemu / include / ui / shader.h
diff --git a/qemu/include/ui/shader.h b/qemu/include/ui/shader.h
new file mode 100644 (file)
index 0000000..8509596
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef QEMU_SHADER_H
+#define QEMU_SHADER_H
+
+#include <epoxy/gl.h>
+
+void qemu_gl_run_texture_blit(GLint texture_blit_prog);
+
+GLuint qemu_gl_create_compile_shader(GLenum type, const GLchar *src);
+GLuint qemu_gl_create_link_program(GLuint vert, GLuint frag);
+GLuint qemu_gl_create_compile_link_program(const GLchar *vert_src,
+                                           const GLchar *frag_src);
+
+#endif /* QEMU_SHADER_H */