diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2023-01-02 16:00:42 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-02 21:00:42 +0000 |
| commit | 10e4b2e14046b74469f7310c599579a6611513fe (patch) | |
| tree | f6e446cb97d1df8b7413f3bf3a9c897ff487b275 /ext/webgpu | |
| parent | f729576b2db2aa6ce000a598ad2e45533f686213 (diff) | |
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'ext/webgpu')
| -rw-r--r-- | ext/webgpu/Cargo.toml | 2 | ||||
| -rw-r--r-- | ext/webgpu/LICENSE.md | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/01_webgpu.js | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/02_idl_types.js | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/binding.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/buffer.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/bundle.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/command_encoder.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/compute_pass.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/error.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/lib.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/pipeline.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/queue.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/render_pass.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/sampler.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/shader.rs | 2 | ||||
| -rw-r--r-- | ext/webgpu/src/texture.rs | 2 |
17 files changed, 17 insertions, 17 deletions
diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml index a57cf72c0..65c559a5a 100644 --- a/ext/webgpu/Cargo.toml +++ b/ext/webgpu/Cargo.toml @@ -1,4 +1,4 @@ -# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. [package] name = "deno_webgpu" diff --git a/ext/webgpu/LICENSE.md b/ext/webgpu/LICENSE.md index cfc3a5226..aec557f3a 100644 --- a/ext/webgpu/LICENSE.md +++ b/ext/webgpu/LICENSE.md @@ -1,6 +1,6 @@ MIT License -Copyright 2018-2022 the Deno authors +Copyright 2018-2023 the Deno authors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/ext/webgpu/src/01_webgpu.js b/ext/webgpu/src/01_webgpu.js index a5863b6c6..1c1b15756 100644 --- a/ext/webgpu/src/01_webgpu.js +++ b/ext/webgpu/src/01_webgpu.js @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // @ts-check /// <reference path="../../core/lib.deno_core.d.ts" /> diff --git a/ext/webgpu/src/02_idl_types.js b/ext/webgpu/src/02_idl_types.js index 08867303a..42986d4fd 100644 --- a/ext/webgpu/src/02_idl_types.js +++ b/ext/webgpu/src/02_idl_types.js @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // @ts-check /// <reference path="../web/internal.d.ts" /> diff --git a/ext/webgpu/src/binding.rs b/ext/webgpu/src/binding.rs index c13fe17a1..7a35db503 100644 --- a/ext/webgpu/src/binding.rs +++ b/ext/webgpu/src/binding.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op; diff --git a/ext/webgpu/src/buffer.rs b/ext/webgpu/src/buffer.rs index ebe83591c..a10642f33 100644 --- a/ext/webgpu/src/buffer.rs +++ b/ext/webgpu/src/buffer.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::type_error; use deno_core::error::AnyError; diff --git a/ext/webgpu/src/bundle.rs b/ext/webgpu/src/bundle.rs index c3019206c..13b0d0cc7 100644 --- a/ext/webgpu/src/bundle.rs +++ b/ext/webgpu/src/bundle.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op; diff --git a/ext/webgpu/src/command_encoder.rs b/ext/webgpu/src/command_encoder.rs index a583466d0..e552a14e0 100644 --- a/ext/webgpu/src/command_encoder.rs +++ b/ext/webgpu/src/command_encoder.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op; diff --git a/ext/webgpu/src/compute_pass.rs b/ext/webgpu/src/compute_pass.rs index c4ae1608b..71f9dfe3b 100644 --- a/ext/webgpu/src/compute_pass.rs +++ b/ext/webgpu/src/compute_pass.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op; diff --git a/ext/webgpu/src/error.rs b/ext/webgpu/src/error.rs index fae0259a8..55ef223a1 100644 --- a/ext/webgpu/src/error.rs +++ b/ext/webgpu/src/error.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 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/src/lib.rs b/ext/webgpu/src/lib.rs index ba5cdbac3..8e67da6b8 100644 --- a/ext/webgpu/src/lib.rs +++ b/ext/webgpu/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::include_js_files; diff --git a/ext/webgpu/src/pipeline.rs b/ext/webgpu/src/pipeline.rs index 1b69e118d..ba90eedf0 100644 --- a/ext/webgpu/src/pipeline.rs +++ b/ext/webgpu/src/pipeline.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op; diff --git a/ext/webgpu/src/queue.rs b/ext/webgpu/src/queue.rs index 549036970..dd78899e3 100644 --- a/ext/webgpu/src/queue.rs +++ b/ext/webgpu/src/queue.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use std::num::NonZeroU32; diff --git a/ext/webgpu/src/render_pass.rs b/ext/webgpu/src/render_pass.rs index 9fe5f71fc..85440b18d 100644 --- a/ext/webgpu/src/render_pass.rs +++ b/ext/webgpu/src/render_pass.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::type_error; use deno_core::error::AnyError; diff --git a/ext/webgpu/src/sampler.rs b/ext/webgpu/src/sampler.rs index bad700535..f2f1037f1 100644 --- a/ext/webgpu/src/sampler.rs +++ b/ext/webgpu/src/sampler.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op; diff --git a/ext/webgpu/src/shader.rs b/ext/webgpu/src/shader.rs index 5053a73d0..f45ab4400 100644 --- a/ext/webgpu/src/shader.rs +++ b/ext/webgpu/src/shader.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op; diff --git a/ext/webgpu/src/texture.rs b/ext/webgpu/src/texture.rs index f75a145c5..9a6a1e939 100644 --- a/ext/webgpu/src/texture.rs +++ b/ext/webgpu/src/texture.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use deno_core::error::AnyError; use deno_core::op; |
