Skip to content

Commit

Permalink
use a shared object with multiple length keys to store regl buffers (#…
Browse files Browse the repository at this point in the history
…155)

I used to use multiple buffers, one for each tile, to store regl information; it makes more sense to just have a single pool shared by all resources. This requires various refactors.
  • Loading branch information
bmschmidt authored Oct 11, 2024
1 parent a3962de commit 549198c
Show file tree
Hide file tree
Showing 6 changed files with 196 additions and 241 deletions.
2 changes: 1 addition & 1 deletion dev/svelte/ColorChange.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export let scatterplot;
let value = 'category10';
const schemes = ['okabe', 'category10', 'dark2', 'pastel2', 'observable10'];
const schemes = ['okabe', 'category10', 'dark2', 'pastel2'];
function changeColor() {
scatterplot.plotAPI({
encoding: {
Expand Down
Loading

0 comments on commit 549198c

Please sign in to comment.