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:
Diffstat (limited to 'source/blender/render/intern/include/gammaCorrectionTables.h')
-rw-r--r--source/blender/render/intern/include/gammaCorrectionTables.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/source/blender/render/intern/include/gammaCorrectionTables.h b/source/blender/render/intern/include/gammaCorrectionTables.h
index 6197f769f6f..3d0928f84a3 100644
--- a/source/blender/render/intern/include/gammaCorrectionTables.h
+++ b/source/blender/render/intern/include/gammaCorrectionTables.h
@@ -35,26 +35,12 @@
#ifndef GAMMACORRECTIONTABLES_H
#define GAMMACORRECTIONTABLES_H
-/* Default gamma. For most CRTs, gamma ranges from 2.2 to 2.5 (Foley), so */
-/* 2.35 seems appropriate enough. Experience teaches a different number */
-/* though. Old blender: 2.0. It might be nice to make this a slider */
-#define RE_DEFAULT_GAMMA 2.0
-/* This 400 is sort of based on the number of intensity levels needed for */
-/* the typical dynamic range of a medium, in this case CRTs. (Foley) */
-/* (Actually, it says the number should be between 400 and 535.) */
-#define RE_GAMMA_TABLE_SIZE 400
-
/**
* Initialise the gamma lookup tables
*/
void makeGammaTables(float gamma);
/**
- * Returns true if the table is initialised, false otherwise
- */
-int gammaTableIsInitialised(void);
-
-/**
* Apply gamma correction on col
*/
float gammaCorrect(float col);
@@ -64,10 +50,5 @@ float gammaCorrect(float col);
*/
float invGammaCorrect(float col);
-/**
- * Tell whether or not to do gamma.
- */
-extern int do_gamma;
-
#endif