mirror of
https://github.com/italicsjenga/vello.git
synced 2025-01-08 20:01:30 +11:00
[vello_shaders] Add copyright headers
This commit is contained in:
parent
eb1d4be36a
commit
7a99ae5a9e
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2023 The Vello authors
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
#[path = "src/compile/mod.rs"]
|
||||
mod compile;
|
||||
#[path = "src/types.rs"]
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2023 The Vello authors
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
use {
|
||||
naga::{
|
||||
front::wgsl,
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2023 The Vello authors
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
use naga::back::msl;
|
||||
|
||||
use super::{BindType, ShaderInfo};
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2023 The Vello authors
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
use std::collections::HashMap;
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2023 The Vello authors
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
use std::{
|
||||
collections::{HashMap, HashSet},
|
||||
fs,
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2023 The Vello authors
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
mod types;
|
||||
|
||||
#[cfg(feature = "compile")]
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright 2023 The Vello authors
|
||||
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
|
||||
//! Types that are shared between the main crate and build.
|
||||
|
||||
/// The type of resource that will be bound to a slot in a shader.
|
||||
|
|
Loading…
Reference in a new issue