mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-14 20:51:07 +00:00
4d697283ae
For vulkan/broadway this just means to ignore it, but for the gl backend we support (with up to 4 texture inputs, which is similar to what shadertoy does, so should be widely supported).
15 lines
391 B
C
15 lines
391 B
C
#ifndef __GSK_GL_RENDERER_PRIVATE_H__
|
|
#define __GSK_GL_RENDERER_PRIVATE_H__
|
|
|
|
#include "gskglrenderer.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
gboolean gsk_gl_render_try_compile_gl_shader (GskGLRenderer *self,
|
|
GskGLShader *shader,
|
|
GError **error);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GSK_GL_RENDERER_PRIVATE_H__ */
|