Tagged template literal for inline GLSL. A no-op at runtime; exists so editors with a GLSL extension can syntax-highlight the string contents.
const frag = glsl` #version 300 es precision highp float; out vec4 colour; void main() { colour = vec4(1.); }` Copy
const frag = glsl` #version 300 es precision highp float; out vec4 colour; void main() { colour = vec4(1.); }`
Tagged template literal for inline GLSL. A no-op at runtime; exists so editors with a GLSL extension can syntax-highlight the string contents.