summaryrefslogtreecommitdiff
path: root/ext/webgpu
diff options
context:
space:
mode:
Diffstat (limited to 'ext/webgpu')
-rw-r--r--ext/webgpu/01_webgpu.js2
-rw-r--r--ext/webgpu/02_idl_types.js2
-rw-r--r--ext/webgpu/Cargo.toml2
-rw-r--r--ext/webgpu/binding.rs2
-rw-r--r--ext/webgpu/buffer.rs2
-rw-r--r--ext/webgpu/bundle.rs2
-rw-r--r--ext/webgpu/command_encoder.rs2
-rw-r--r--ext/webgpu/compute_pass.rs2
-rw-r--r--ext/webgpu/error.rs2
-rw-r--r--ext/webgpu/lib.rs2
-rw-r--r--ext/webgpu/pipeline.rs2
-rw-r--r--ext/webgpu/queue.rs2
-rw-r--r--ext/webgpu/render_pass.rs2
-rw-r--r--ext/webgpu/sampler.rs2
-rw-r--r--ext/webgpu/shader.rs2
-rw-r--r--ext/webgpu/texture.rs2
16 files changed, 16 insertions, 16 deletions
diff --git a/ext/webgpu/01_webgpu.js b/ext/webgpu/01_webgpu.js
index 4b5101bf4..f1d3eb120 100644
--- a/ext/webgpu/01_webgpu.js
+++ b/ext/webgpu/01_webgpu.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../../core/lib.deno_core.d.ts" />
diff --git a/ext/webgpu/02_idl_types.js b/ext/webgpu/02_idl_types.js
index 6f871a4ff..3c49c1888 100644
--- a/ext/webgpu/02_idl_types.js
+++ b/ext/webgpu/02_idl_types.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// @ts-check
/// <reference path="../web/internal.d.ts" />
diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml
index 24f629007..706f07f04 100644
--- a/ext/webgpu/Cargo.toml
+++ b/ext/webgpu/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_webgpu"
diff --git a/ext/webgpu/binding.rs b/ext/webgpu/binding.rs
index 4f68c65e9..fea99fc16 100644
--- a/ext/webgpu/binding.rs
+++ b/ext/webgpu/binding.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::ResourceId;
diff --git a/ext/webgpu/buffer.rs b/ext/webgpu/buffer.rs
index 30818194f..3f2c07883 100644
--- a/ext/webgpu/buffer.rs
+++ b/ext/webgpu/buffer.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::type_error;
use deno_core::error::AnyError;
diff --git a/ext/webgpu/bundle.rs b/ext/webgpu/bundle.rs
index 8b2828a30..7b32c1ece 100644
--- a/ext/webgpu/bundle.rs
+++ b/ext/webgpu/bundle.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::ResourceId;
diff --git a/ext/webgpu/command_encoder.rs b/ext/webgpu/command_encoder.rs
index afffe77a0..cbd57f694 100644
--- a/ext/webgpu/command_encoder.rs
+++ b/ext/webgpu/command_encoder.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::ResourceId;
diff --git a/ext/webgpu/compute_pass.rs b/ext/webgpu/compute_pass.rs
index fe1186c4e..e52db461c 100644
--- a/ext/webgpu/compute_pass.rs
+++ b/ext/webgpu/compute_pass.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::ResourceId;
diff --git a/ext/webgpu/error.rs b/ext/webgpu/error.rs
index c821fbf8f..18ffdf1a8 100644
--- a/ext/webgpu/error.rs
+++ b/ext/webgpu/error.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::ResourceId;
use serde::Serialize;
diff --git a/ext/webgpu/lib.rs b/ext/webgpu/lib.rs
index 0fdd30dd3..81f84f6bf 100644
--- a/ext/webgpu/lib.rs
+++ b/ext/webgpu/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::include_js_files;
diff --git a/ext/webgpu/pipeline.rs b/ext/webgpu/pipeline.rs
index 3b0f03540..1d22bdba0 100644
--- a/ext/webgpu/pipeline.rs
+++ b/ext/webgpu/pipeline.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::ResourceId;
diff --git a/ext/webgpu/queue.rs b/ext/webgpu/queue.rs
index 79698e7b8..39bd93603 100644
--- a/ext/webgpu/queue.rs
+++ b/ext/webgpu/queue.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use std::num::NonZeroU32;
diff --git a/ext/webgpu/render_pass.rs b/ext/webgpu/render_pass.rs
index 125579b52..780b6ea57 100644
--- a/ext/webgpu/render_pass.rs
+++ b/ext/webgpu/render_pass.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::type_error;
use deno_core::error::AnyError;
diff --git a/ext/webgpu/sampler.rs b/ext/webgpu/sampler.rs
index 95fb167ac..23652cc47 100644
--- a/ext/webgpu/sampler.rs
+++ b/ext/webgpu/sampler.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::ResourceId;
diff --git a/ext/webgpu/shader.rs b/ext/webgpu/shader.rs
index efb67e8f0..2477beceb 100644
--- a/ext/webgpu/shader.rs
+++ b/ext/webgpu/shader.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::ResourceId;
diff --git a/ext/webgpu/texture.rs b/ext/webgpu/texture.rs
index ac3ceda6a..9b007b34d 100644
--- a/ext/webgpu/texture.rs
+++ b/ext/webgpu/texture.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::not_supported;
use deno_core::error::AnyError;