Skip to content

Commit 68197de

Browse files
authored
Merge pull request #28 from VyvaHart/dev
Dev
2 parents e0add69 + 2cabf47 commit 68197de

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

app.webmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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",

shaders/fragment.glsl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff 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(

0 commit comments

Comments
 (0)