diff --git a/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/calculator.ts b/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/calculator.ts index b2f1465f3c..755ec30a0c 100644 --- a/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/calculator.ts +++ b/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/calculator.ts @@ -1,7 +1,6 @@ import { initCache, prefixScan } from '@typegpu/concurrent-scan'; -import * as d from 'typegpu/data'; import type { TgpuRoot } from 'typegpu'; -import * as std from 'typegpu/std'; +import { d, std } from 'typegpu'; type SumResult = { success: boolean; diff --git a/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/meta.json b/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/meta.json index 4ed5e5c2af..3c04b50965 100644 --- a/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/meta.json +++ b/apps/typegpu-docs/src/examples/algorithms/concurrent-chart/meta.json @@ -1,5 +1,6 @@ { "title": "Concurrent Chart", "category": "algorithms", - "tags": ["compute", "concurrent", "timestamp query"] + "tags": ["compute", "concurrent", "timestamp query"], + "dev": true }