From d08118b535a95755c29984e256cba205172acd95 Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Thu, 21 Nov 2019 16:53:51 -0500 Subject: [PATCH] Add missing license headers to wgpu-native --- wgpu-native/src/command.rs | 4 ++++ wgpu-native/src/device.rs | 4 ++++ wgpu-native/src/lib.rs | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/wgpu-native/src/command.rs b/wgpu-native/src/command.rs index ed5f87a121..fb943228bc 100644 --- a/wgpu-native/src/command.rs +++ b/wgpu-native/src/command.rs @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + use crate::GLOBAL; use core::{gfx_select, id}; diff --git a/wgpu-native/src/device.rs b/wgpu-native/src/device.rs index 4b7ccaceda..1db2bb9793 100644 --- a/wgpu-native/src/device.rs +++ b/wgpu-native/src/device.rs @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + use crate::GLOBAL; use core::{gfx_select, hub::Token, id}; diff --git a/wgpu-native/src/lib.rs b/wgpu-native/src/lib.rs index ff6c1565ef..74970826ba 100644 --- a/wgpu-native/src/lib.rs +++ b/wgpu-native/src/lib.rs @@ -1,3 +1,7 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + use std::sync::Arc; mod command;