Skip to content

Commit

Permalink
Deploying to gh-pages from @ 5c37623 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
greggman committed Mar 16, 2024
1 parent 2c1cbf3 commit dd8c64d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sample/a-buffer/composite.wgsl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fn main_fs(@builtin(position) position: vec4f) -> @location(0) vec4f {
let headsIndex = u32(fragCoords.y - sliceInfo.sliceStartY) * uniforms.targetWidth + u32(fragCoords.x);

// The maximum layers we can process for any pixel
const maxLayers = 24u;
const maxLayers = 12u;

var layers: array<LinkedListElement, maxLayers>;

Expand Down
4 changes: 2 additions & 2 deletions sample/a-buffer/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sample/a-buffer/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sample/a-buffer/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const presentationFormat = navigator.gpu.getPreferredCanvasFormat();
context.configure({
device,
format: presentationFormat,
alphaMode: 'premultiplied',
alphaMode: 'opaque',
});

const params = new URLSearchParams(window.location.search);
Expand Down

0 comments on commit dd8c64d

Please sign in to comment.