Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-03-05 15:36:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-05 15:41:44 +0400
commitf5d2b46b37fc627f82b844b5c62bf79f92da6199 (patch)
tree5dc9941c85016560676ecc90eee31d354d0bf252 /source/blender/render/intern/include
parente49e78e414d7e7b2e18cbe3fa3f7c967a54a1af3 (diff)
Code cleanup: remove long unused gamma correction tables
Diffstat (limited to 'source/blender/render/intern/include')
-rw-r--r--source/blender/render/intern/include/gammaCorrectionTables.h51
1 files changed, 0 insertions, 51 deletions
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
-