OLD | NEW |
1 //<<<+++OPENSOURCE | 1 //<<<+++OPENSOURCE |
2 //<<<+++OPENSOURCE_MUST_BEGIN COMMENT==TRUE | 2 //<<<+++OPENSOURCE_MUST_BEGIN COMMENT==TRUE |
3 // | 3 // |
4 // Little Color Management System | 4 // Little Color Management System |
5 // Copyright (c) 1998-2014 Marti Maria Saguer | 5 // Copyright (c) 1998-2014 Marti Maria Saguer |
6 // | 6 // |
7 // Permission is hereby granted, free of charge, to any person obtaining | 7 // Permission is hereby granted, free of charge, to any person obtaining |
8 // a copy of this software and associated documentation files (the "Software"), | 8 // a copy of this software and associated documentation files (the "Software"), |
9 // to deal in the Software without restriction, including without limitation | 9 // to deal in the Software without restriction, including without limitation |
10 // the rights to use, copy, modify, merge, publish, distribute, sublicense, | 10 // the rights to use, copy, modify, merge, publish, distribute, sublicense, |
(...skipping 11 matching lines...) Expand all Loading... |
22 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | 22 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
23 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | 23 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
24 // | 24 // |
25 //------------------------------------------------------------------------------
--- | 25 //------------------------------------------------------------------------------
--- |
26 // | 26 // |
27 | 27 |
28 #ifndef _lcms_internal_H | 28 #ifndef _lcms_internal_H |
29 | 29 |
30 // Include plug-in foundation | 30 // Include plug-in foundation |
31 #ifndef _lcms_plugin_H | 31 #ifndef _lcms_plugin_H |
32 # include "../include/lcms2_plugin.h" | 32 #include "third_party/lcms2-2.6/include/lcms2_plugin.h" |
33 #endif | 33 #endif |
34 | 34 |
35 // ctype is part of C99 as per 7.1.2 | 35 // ctype is part of C99 as per 7.1.2 |
36 #include <ctype.h> | 36 #include <ctype.h> |
37 | 37 |
38 // assert macro is part of C99 as per 7.2 | 38 // assert macro is part of C99 as per 7.2 |
39 #include <assert.h> | 39 #include <assert.h> |
40 | 40 |
41 // Some needed constants | 41 // Some needed constants |
42 #ifndef M_PI | 42 #ifndef M_PI |
(...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1023 cmsUInt32Number dwFlags); | 1023 cmsUInt32Number dwFlags); |
1024 | 1024 |
1025 cmsBool _cmsAdaptationMatrix(cmsMAT3* r, const cmsMAT3* ConeMatrix, const cmsC
IEXYZ* FromIll, const cmsCIEXYZ* ToIll); | 1025 cmsBool _cmsAdaptationMatrix(cmsMAT3* r, const cmsMAT3* ConeMatrix, const cmsC
IEXYZ* FromIll, const cmsCIEXYZ* ToIll); |
1026 | 1026 |
1027 cmsBool _cmsBuildRGB2XYZtransferMatrix(cmsMAT3* r, const cmsCIExyY* WhitePoint
, const cmsCIExyYTRIPLE* Primaries); | 1027 cmsBool _cmsBuildRGB2XYZtransferMatrix(cmsMAT3* r, const cmsCIExyY* WhitePoint
, const cmsCIExyYTRIPLE* Primaries); |
1028 | 1028 |
1029 | 1029 |
1030 #define _lcms_internal_H | 1030 #define _lcms_internal_H |
1031 #endif | 1031 #endif |
1032 //<<<+++OPENSOURCE_MUST_END | 1032 //<<<+++OPENSOURCE_MUST_END |
OLD | NEW |