From f5d2b46b37fc627f82b844b5c62bf79f92da6199 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 5 Mar 2014 22:36:38 +1100 Subject: Code cleanup: remove long unused gamma correction tables --- .../render/intern/include/gammaCorrectionTables.h | 51 ---------------------- 1 file changed, 51 deletions(-) delete mode 100644 source/blender/render/intern/include/gammaCorrectionTables.h (limited to 'source/blender/render/intern/include') diff --git a/source/blender/render/intern/include/gammaCorrectionTables.h b/source/blender/render/intern/include/gammaCorrectionTables.h deleted file mode 100644 index 68bb15f7f4c..00000000000 --- a/source/blender/render/intern/include/gammaCorrectionTables.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - * ***** 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 - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - * - * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV. - * All rights reserved. - * - * The Original Code is: all of this file. - * - * Contributor(s): none yet. - * - * ***** END GPL LICENSE BLOCK ***** - */ - -#ifndef __GAMMACORRECTIONTABLES_H__ -#define __GAMMACORRECTIONTABLES_H__ - -/** \file blender/render/intern/include/gammaCorrectionTables.h - * \ingroup render - */ - -/** - * Initialize the gamma lookup tables - */ -void makeGammaTables(float gamma); - -/** - * Apply gamma correction on col - */ -float gammaCorrect(float col); - -/** - * Apply inverse gamma correction on col - */ -float invGammaCorrect(float col); - -#endif - -- cgit v1.2.3