UNPKG

sigrist-svelte-mandelbrot-explorer

Version:

A svelte component that renders the mandelbrot set using WebGL. Try this [Demo](https://sigrist.dev/apps/mandelbrot).

10 lines (7 loc) 176 B
export default `precision highp float; attribute vec2 position; varying vec2 fragCoord; void main() { fragCoord = position; gl_Position = vec4(position,0.0,1.0); }`;