Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Side by Side Diff: Source/platform/graphics/ColorSpace.cpp

Issue 1083213004: Move createColorSpaceFilter from ImageBuffer to ColorSpaceUtilities (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/platform/graphics/ColorSpace.h ('k') | Source/platform/graphics/GraphicsContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 15 matching lines...) Expand all
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
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 "third_party/skia/include/effects/SkTableColorFilter.h"
36 #include "wtf/MathExtras.h" 37 #include "wtf/MathExtras.h"
37 38
38 namespace blink { 39 namespace blink {
39 40
40 namespace ColorSpaceUtilities { 41 namespace ColorSpaceUtilities {
41 42
42 static const uint8_t* getLinearRgbLUT() 43 static const uint8_t* getLinearRgbLUT()
43 { 44 {
44 static uint8_t linearRgbLUT[256]; 45 static uint8_t linearRgbLUT[256];
45 static bool initialized; 46 static bool initialized;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 96
96 Color convertColor(const Color& srcColor, ColorSpace dstColorSpace, ColorSpace s rcColorSpace) 97 Color convertColor(const Color& srcColor, ColorSpace dstColorSpace, ColorSpace s rcColorSpace)
97 { 98 {
98 const uint8_t* lookupTable = getConversionLUT(dstColorSpace, srcColorSpace); 99 const uint8_t* lookupTable = getConversionLUT(dstColorSpace, srcColorSpace);
99 if (!lookupTable) 100 if (!lookupTable)
100 return srcColor; 101 return srcColor;
101 102
102 return Color(lookupTable[srcColor.red()], lookupTable[srcColor.green()], loo kupTable[srcColor.blue()], srcColor.alpha()); 103 return Color(lookupTable[srcColor.red()], lookupTable[srcColor.green()], loo kupTable[srcColor.blue()], srcColor.alpha());
103 } 104 }
104 105
106 PassRefPtr<SkColorFilter> createColorSpaceFilter(ColorSpace srcColorSpace, Color Space dstColorSpace)
107 {
108 const uint8_t* lookupTable = getConversionLUT(dstColorSpace, srcColorSpace);
109 if (!lookupTable)
110 return nullptr;
111
112 return adoptRef(SkTableColorFilter::CreateARGB(0, lookupTable, lookupTable, lookupTable));
113 }
114
105 } // namespace ColorSpaceUtilities 115 } // namespace ColorSpaceUtilities
106 116
107 } // namespace blink 117 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/graphics/ColorSpace.h ('k') | Source/platform/graphics/GraphicsContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698