Skip to content

Commit

Permalink
fix gui render issue
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed May 27, 2024
1 parent 7e2a14e commit a301b65
Show file tree
Hide file tree
Showing 11 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion webgpu/webgl-optimization-none.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
1 change: 0 additions & 1 deletion webgpu/webgpu-optimization-all.html
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
1 change: 0 additions & 1 deletion webgpu/webgpu-optimization-none.html
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
1 change: 0 additions & 1 deletion webgpu/webgpu-optimization-step4-material-uniforms.html
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
1 change: 0 additions & 1 deletion webgpu/webgpu-optimization-step5-use-buffer-offsets.html
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
1 change: 0 additions & 1 deletion webgpu/webgpu-optimization-step6-use-mapped-buffers.html
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down
1 change: 0 additions & 1 deletion webgpu/webgpu-optimization-step7-double-buffer.html
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,6 @@
};

const gui = new GUI();
gui.onChange(render);
gui.add(settings, 'numObjects', { min: 0, max: maxObjects, step: 1});
gui.add(settings, 'render');

Expand Down

0 comments on commit a301b65

Please sign in to comment.