Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions sample/tokyoTrains/meta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
name: 'Tokyo Trains',
description: `Draws a representation of the Tokyo Train systems using WebGPU.`,
filename: __DIRNAME__,
external: {
url: 'https://greggman.github.io/tokyo-trains/',
sourceURL: 'https://github.com/greggman/tokyo-trains',
},
sources: [],
};
10 changes: 10 additions & 0 deletions sample/webgpuAquarium/meta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
name: 'WebGPU Aquarium',
description: `A WebGPU based under water ocean simulation.`,
filename: __DIRNAME__,
external: {
url: 'https://greggman.github.io/webgpu-aquarium/',
sourceURL: 'https://github.com/greggman/webgpu-aquarium',
},
sources: [],
};
10 changes: 10 additions & 0 deletions sample/webgpuDOOM/meta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
name: 'WebGPU DOOM',
description: `DOOM running on WebGPU.`,
filename: __DIRNAME__,
external: {
url: 'https://greggman.github.io/WebGPU-DOOM/index-postprocess.html?pp=matrix',
sourceURL: 'https://github.com/greggman/WebGPU-DOOM',
},
sources: [],
};
10 changes: 10 additions & 0 deletions sample/worldFlights/meta.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
name: 'World Flights',
description: `A visualization of commercial flight around the world for 24hrs using WebGPU.`,
filename: __DIRNAME__,
external: {
url: 'https://greggman.github.io/world-flights/',
sourceURL: 'https://github.com/greggman/world-flights',
},
sources: [],
};
8 changes: 8 additions & 0 deletions src/samples.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,18 @@ import stencilMask from '../sample/stencilMask/meta';
import textRenderingMsdf from '../sample/textRenderingMsdf/meta';
import texturedCube from '../sample/texturedCube/meta';
import timestampQuery from '../sample/timestampQuery/meta';
import tokyoTrains from '../sample/tokyoTrains/meta';
import transparentCanvas from '../sample/transparentCanvas/meta';
import twoCubes from '../sample/twoCubes/meta';
import videoUploading from '../sample/videoUploading/meta';
import visionTransformer from '../sample/visionTransformer/meta';
import volumeRenderingTexture3D from '../sample/volumeRenderingTexture3D/meta';
import webgpuAquarium from '../sample/webgpuAquarium/meta';
import webgpuDOOM from '../sample/webgpuDOOM/meta';
import wireframe from '../sample/wireframe/meta';
import worker from '../sample/worker/meta';
import workloadSimulator from '../sample/workloadSimulator/meta';
import worldFlights from '../sample/worldFlights/meta';

export type SourceInfo = {
path: string;
Expand Down Expand Up @@ -175,6 +179,10 @@ export const pageCategories: PageCategory[] = [
alphaToCoverageEmulator,
particleLife,
visionTransformer,
tokyoTrains,
worldFlights,
webgpuDOOM,
webgpuAquarium,
},
},

Expand Down
Loading