mirror of
https://github.com/Rezmason/matrix.git
synced 2026-04-18 06:09:30 -07:00
Updating WebGPU project to satisfy Chrome Canary
This commit is contained in:
@@ -75,6 +75,7 @@ export default ({ config, device }) => {
|
||||
const [blurShader, combineShader] = await Promise.all(assets);
|
||||
|
||||
blurPipeline = device.createComputePipeline({
|
||||
layout: "auto",
|
||||
compute: {
|
||||
module: blurShader.module,
|
||||
entryPoint: "computeMain",
|
||||
@@ -82,6 +83,7 @@ export default ({ config, device }) => {
|
||||
});
|
||||
|
||||
combinePipeline = device.createComputePipeline({
|
||||
layout: "auto",
|
||||
compute: {
|
||||
module: combineShader.module,
|
||||
entryPoint: "computeMain",
|
||||
|
||||
Reference in New Issue
Block a user