diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..4da9dda --- /dev/null +++ b/AUTHORS @@ -0,0 +1,7 @@ +# This is the list of Velato's significant contributors. +# +# This does not necessarily list everyone who has contributed code, +# especially since many employees of one corporation may be contributing. +# To see the full list of contributors, see the revision history in +# source control. +Google LLC diff --git a/Cargo.toml b/Cargo.toml index 9c6d60c..eddf62b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,9 +6,7 @@ members = ["demo"] edition = "2021" version = "0.0.1" license = "MIT OR Apache-2.0" -# homepage = "https://vello.dev" - Domain owned by us, but unused at present -# rust-version = -repository = "https://github.com/linebender/vello" +repository = "https://github.com/linebender/velato" [package] name = "velato" diff --git a/demo/src/main.rs b/demo/src/main.rs index 050d408..e0de976 100644 --- a/demo/src/main.rs +++ b/demo/src/main.rs @@ -1,18 +1,5 @@ -// Copyright 2022 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// https://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. -// -// Also licensed under MIT license, at your choice. +// Copyright 2022 the Velato Authors +// SPDX-License-Identifier: Apache-2.0 OR MIT use std::{fs, time::Instant}; diff --git a/src/import.rs b/src/import.rs index 4c942fd..12c2ac7 100644 --- a/src/import.rs +++ b/src/import.rs @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2023 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use crate::model::animated::Position; diff --git a/src/lib.rs b/src/lib.rs index 39669a9..fc68cd0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2023 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT /// Re-export vello. diff --git a/src/model/animated.rs b/src/model/animated.rs index 0de5342..22ee4c0 100644 --- a/src/model/animated.rs +++ b/src/model/animated.rs @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2023 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT /*! diff --git a/src/model/fixed.rs b/src/model/fixed.rs index 5b827ae..9f1f675 100644 --- a/src/model/fixed.rs +++ b/src/model/fixed.rs @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2023 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT /*! diff --git a/src/model/mod.rs b/src/model/mod.rs index 7c3606b..972b8c1 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2023 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use vello::kurbo::{self, Affine, PathEl, Point, Shape as _, Size, Vec2}; diff --git a/src/model/spline.rs b/src/model/spline.rs index 693d348..54ee609 100644 --- a/src/model/spline.rs +++ b/src/model/spline.rs @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2023 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use vello::kurbo::{PathEl, Point}; diff --git a/src/model/value.rs b/src/model/value.rs index 3c4b69c..5304efc 100644 --- a/src/model/value.rs +++ b/src/model/value.rs @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2023 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use vello::kurbo; diff --git a/src/render.rs b/src/render.rs index 46d2d63..72822f0 100644 --- a/src/render.rs +++ b/src/render.rs @@ -1,4 +1,4 @@ -// Copyright 2023 Google LLC +// Copyright 2023 the Velato Authors // SPDX-License-Identifier: Apache-2.0 OR MIT use super::{model::*, Composition};