File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed
Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change 11{
2- "name" : " WebGPU Mandelbrot" ,
2+ "name" : " WebGL Mandelbrot" ,
33 "short_name" : " Mandelbrot" ,
4- "description" : " A GPU accelerated Mandelbrot viewer made using the WebGPU API" ,
4+ "description" : " A GPU accelerated Mandelbrot viewer made using the WebGL API" ,
55 "start_url" : " ./" ,
66 "display" : " standalone" ,
77 "background_color" : " #000" ,
Original file line number Diff line number Diff line change @@ -42,13 +42,6 @@ void main() {
4242
4343 if (iteration < maxIterations) {
4444
45- // fragColor = vec4(
46- // sin(noise * 1.0 * normalizedIter),
47- // sin(noise * 2.0 * normalizedIter),
48- // sin(noise * 3.0 * normalizedIter),
49- // 1.0
50- // );
51-
5245 // Apply different color schemes based on the theme value
5346 if (theme == 1 ) {
5447 fragColor = vec4 (
You can’t perform that action at this time.
0 commit comments