From dc3b5024be1a7e1a2c0c2029b47c62ef28bbbc74 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 23 Jan 2019 11:29:18 +1100 Subject: Cleanup: add BEGIN/END to GPL headers --- source/blender/draw/engines/eevee/eevee_bloom.c | 5 ++++- source/blender/draw/engines/eevee/eevee_data.c | 5 ++++- source/blender/draw/engines/eevee/eevee_depth_of_field.c | 5 ++++- source/blender/draw/engines/eevee/eevee_effects.c | 5 ++++- source/blender/draw/engines/eevee/eevee_engine.c | 5 ++++- source/blender/draw/engines/eevee/eevee_engine.h | 5 ++++- source/blender/draw/engines/eevee/eevee_lightcache.c | 5 ++++- source/blender/draw/engines/eevee/eevee_lightcache.h | 5 ++++- source/blender/draw/engines/eevee/eevee_lightprobes.c | 5 ++++- source/blender/draw/engines/eevee/eevee_lights.c | 5 ++++- source/blender/draw/engines/eevee/eevee_lookdev.c | 5 ++++- source/blender/draw/engines/eevee/eevee_materials.c | 5 ++++- source/blender/draw/engines/eevee/eevee_mist.c | 5 ++++- source/blender/draw/engines/eevee/eevee_motion_blur.c | 5 ++++- source/blender/draw/engines/eevee/eevee_occlusion.c | 5 ++++- source/blender/draw/engines/eevee/eevee_private.h | 5 ++++- source/blender/draw/engines/eevee/eevee_render.c | 5 ++++- source/blender/draw/engines/eevee/eevee_screen_raytrace.c | 5 ++++- source/blender/draw/engines/eevee/eevee_shaders.c | 5 ++++- source/blender/draw/engines/eevee/eevee_subsurface.c | 5 ++++- source/blender/draw/engines/eevee/eevee_temporal_sampling.c | 5 ++++- source/blender/draw/engines/eevee/eevee_volumes.c | 5 ++++- 22 files changed, 88 insertions(+), 22 deletions(-) (limited to 'source/blender/draw/engines/eevee') diff --git a/source/blender/draw/engines/eevee/eevee_bloom.c b/source/blender/draw/engines/eevee/eevee_bloom.c index d111c28b256..14adc43e84d 100644 --- a/source/blender/draw/engines/eevee/eevee_bloom.c +++ b/source/blender/draw/engines/eevee/eevee_bloom.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_bloom.c diff --git a/source/blender/draw/engines/eevee/eevee_data.c b/source/blender/draw/engines/eevee/eevee_data.c index 636e532555f..30ae47bb9de 100644 --- a/source/blender/draw/engines/eevee/eevee_data.c +++ b/source/blender/draw/engines/eevee/eevee_data.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_data.c diff --git a/source/blender/draw/engines/eevee/eevee_depth_of_field.c b/source/blender/draw/engines/eevee/eevee_depth_of_field.c index 2c3ce8b65f8..7cb6492a37c 100644 --- a/source/blender/draw/engines/eevee/eevee_depth_of_field.c +++ b/source/blender/draw/engines/eevee/eevee_depth_of_field.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_depth_of_field.c diff --git a/source/blender/draw/engines/eevee/eevee_effects.c b/source/blender/draw/engines/eevee/eevee_effects.c index 787957a4a33..a707961da63 100644 --- a/source/blender/draw/engines/eevee/eevee_effects.c +++ b/source/blender/draw/engines/eevee/eevee_effects.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_effects.c diff --git a/source/blender/draw/engines/eevee/eevee_engine.c b/source/blender/draw/engines/eevee/eevee_engine.c index 47010fe37d8..483220fde9c 100644 --- a/source/blender/draw/engines/eevee/eevee_engine.c +++ b/source/blender/draw/engines/eevee/eevee_engine.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_engine.c diff --git a/source/blender/draw/engines/eevee/eevee_engine.h b/source/blender/draw/engines/eevee/eevee_engine.h index b7de3a055b9..9ce7736a2a9 100644 --- a/source/blender/draw/engines/eevee/eevee_engine.h +++ b/source/blender/draw/engines/eevee/eevee_engine.h @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_engine.h diff --git a/source/blender/draw/engines/eevee/eevee_lightcache.c b/source/blender/draw/engines/eevee/eevee_lightcache.c index 38a4552e4d8..93162c6eae2 100644 --- a/source/blender/draw/engines/eevee/eevee_lightcache.c +++ b/source/blender/draw/engines/eevee/eevee_lightcache.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_lightcache.c diff --git a/source/blender/draw/engines/eevee/eevee_lightcache.h b/source/blender/draw/engines/eevee/eevee_lightcache.h index 3c6fc73a849..846932661be 100644 --- a/source/blender/draw/engines/eevee/eevee_lightcache.h +++ b/source/blender/draw/engines/eevee/eevee_lightcache.h @@ -1,5 +1,5 @@ /* - * Copyright 2018, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2018, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_lightcache.h diff --git a/source/blender/draw/engines/eevee/eevee_lightprobes.c b/source/blender/draw/engines/eevee/eevee_lightprobes.c index a9e51b8ebe8..008d458bc6a 100644 --- a/source/blender/draw/engines/eevee/eevee_lightprobes.c +++ b/source/blender/draw/engines/eevee/eevee_lightprobes.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_lightprobes.c diff --git a/source/blender/draw/engines/eevee/eevee_lights.c b/source/blender/draw/engines/eevee/eevee_lights.c index a41e3ec48f0..820ead715d9 100644 --- a/source/blender/draw/engines/eevee/eevee_lights.c +++ b/source/blender/draw/engines/eevee/eevee_lights.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_lights.c diff --git a/source/blender/draw/engines/eevee/eevee_lookdev.c b/source/blender/draw/engines/eevee/eevee_lookdev.c index e611894443d..cc109f91d4a 100644 --- a/source/blender/draw/engines/eevee/eevee_lookdev.c +++ b/source/blender/draw/engines/eevee/eevee_lookdev.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_lookdev.c diff --git a/source/blender/draw/engines/eevee/eevee_materials.c b/source/blender/draw/engines/eevee/eevee_materials.c index 43762bd3bae..f0274eafaeb 100644 --- a/source/blender/draw/engines/eevee/eevee_materials.c +++ b/source/blender/draw/engines/eevee/eevee_materials.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_materials.c diff --git a/source/blender/draw/engines/eevee/eevee_mist.c b/source/blender/draw/engines/eevee/eevee_mist.c index de9582611ec..693f501c183 100644 --- a/source/blender/draw/engines/eevee/eevee_mist.c +++ b/source/blender/draw/engines/eevee/eevee_mist.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_mist.c diff --git a/source/blender/draw/engines/eevee/eevee_motion_blur.c b/source/blender/draw/engines/eevee/eevee_motion_blur.c index d2309d20abb..369a77d0421 100644 --- a/source/blender/draw/engines/eevee/eevee_motion_blur.c +++ b/source/blender/draw/engines/eevee/eevee_motion_blur.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_motion_blur.c diff --git a/source/blender/draw/engines/eevee/eevee_occlusion.c b/source/blender/draw/engines/eevee/eevee_occlusion.c index 3763e13533d..8c76f3a500b 100644 --- a/source/blender/draw/engines/eevee/eevee_occlusion.c +++ b/source/blender/draw/engines/eevee/eevee_occlusion.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_occlusion.c diff --git a/source/blender/draw/engines/eevee/eevee_private.h b/source/blender/draw/engines/eevee/eevee_private.h index f7578182c15..acefb6b725a 100644 --- a/source/blender/draw/engines/eevee/eevee_private.h +++ b/source/blender/draw/engines/eevee/eevee_private.h @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_private.h diff --git a/source/blender/draw/engines/eevee/eevee_render.c b/source/blender/draw/engines/eevee/eevee_render.c index eddebdbec4c..373618102e5 100644 --- a/source/blender/draw/engines/eevee/eevee_render.c +++ b/source/blender/draw/engines/eevee/eevee_render.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_render.c diff --git a/source/blender/draw/engines/eevee/eevee_screen_raytrace.c b/source/blender/draw/engines/eevee/eevee_screen_raytrace.c index 13bedc34e05..a3a11285e5e 100644 --- a/source/blender/draw/engines/eevee/eevee_screen_raytrace.c +++ b/source/blender/draw/engines/eevee/eevee_screen_raytrace.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_screen_raytrace.c diff --git a/source/blender/draw/engines/eevee/eevee_shaders.c b/source/blender/draw/engines/eevee/eevee_shaders.c index b0b849bbd1e..dcff8ca7581 100644 --- a/source/blender/draw/engines/eevee/eevee_shaders.c +++ b/source/blender/draw/engines/eevee/eevee_shaders.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_shaders.c diff --git a/source/blender/draw/engines/eevee/eevee_subsurface.c b/source/blender/draw/engines/eevee/eevee_subsurface.c index 9ecc1fb1b2b..d3395398b18 100644 --- a/source/blender/draw/engines/eevee/eevee_subsurface.c +++ b/source/blender/draw/engines/eevee/eevee_subsurface.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_subsurface.c diff --git a/source/blender/draw/engines/eevee/eevee_temporal_sampling.c b/source/blender/draw/engines/eevee/eevee_temporal_sampling.c index deac0b89b10..480ff87a5eb 100644 --- a/source/blender/draw/engines/eevee/eevee_temporal_sampling.c +++ b/source/blender/draw/engines/eevee/eevee_temporal_sampling.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_temporal_sampling.c diff --git a/source/blender/draw/engines/eevee/eevee_volumes.c b/source/blender/draw/engines/eevee/eevee_volumes.c index b3042f8fcf8..58e932f6e5c 100644 --- a/source/blender/draw/engines/eevee/eevee_volumes.c +++ b/source/blender/draw/engines/eevee/eevee_volumes.c @@ -1,5 +1,5 @@ /* - * Copyright 2016, Blender Foundation. + * ***** BEGIN GPL LICENSE BLOCK ***** * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -15,8 +15,11 @@ * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + * Copyright 2016, Blender Foundation. * Contributor(s): Blender Institute * + * ***** END GPL LICENSE BLOCK ***** + * */ /** \file eevee_volumes.c -- cgit v1.2.3