OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2008, Google Inc. All rights reserved. | 2 * Copyright (c) 2008, Google Inc. All rights reserved. |
3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. | 4 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. |
5 * | 5 * |
6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
8 * met: | 8 * met: |
9 * | 9 * |
10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
(...skipping 17 matching lines...) Expand all Loading... |
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
31 */ | 31 */ |
32 | 32 |
33 #include "config.h" | 33 #include "config.h" |
34 #include "platform/graphics/ColorSpace.h" | 34 #include "platform/graphics/ColorSpace.h" |
35 | 35 |
36 #include "wtf/MathExtras.h" | 36 #include "wtf/MathExtras.h" |
37 | 37 |
38 namespace WebCore { | 38 namespace blink { |
39 | 39 |
40 namespace ColorSpaceUtilities { | 40 namespace ColorSpaceUtilities { |
41 | 41 |
42 static const uint8_t* getLinearRgbLUT() | 42 static const uint8_t* getLinearRgbLUT() |
43 { | 43 { |
44 static uint8_t linearRgbLUT[256]; | 44 static uint8_t linearRgbLUT[256]; |
45 static bool initialized; | 45 static bool initialized; |
46 if (!initialized) { | 46 if (!initialized) { |
47 for (unsigned i = 0; i < 256; i++) { | 47 for (unsigned i = 0; i < 256; i++) { |
48 float color = i / 255.0f; | 48 float color = i / 255.0f; |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 { | 97 { |
98 const uint8_t* lookupTable = getConversionLUT(dstColorSpace, srcColorSpace); | 98 const uint8_t* lookupTable = getConversionLUT(dstColorSpace, srcColorSpace); |
99 if (!lookupTable) | 99 if (!lookupTable) |
100 return srcColor; | 100 return srcColor; |
101 | 101 |
102 return Color(lookupTable[srcColor.red()], lookupTable[srcColor.green()], loo
kupTable[srcColor.blue()], srcColor.alpha()); | 102 return Color(lookupTable[srcColor.red()], lookupTable[srcColor.green()], loo
kupTable[srcColor.blue()], srcColor.alpha()); |
103 } | 103 } |
104 | 104 |
105 } // namespace ColorSpaceUtilities | 105 } // namespace ColorSpaceUtilities |
106 | 106 |
107 } // namespace WebCore | 107 } // namespace blink |
OLD | NEW |