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

Side by Side Diff: Source/platform/graphics/filters/FEColorMatrix.cpp

Issue 1135023003: Rework the checks for too-few values in feColorMatrix filter. (Closed) Base URL: svn://svn.chromium.org/blink/branches/chromium/2357
Patch Set: Created 5 years, 7 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/filters/FEColorMatrix.h ('k') | no next file » | 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) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
6 * Copyright (C) 2013 Google Inc. All rights reserved. 6 * Copyright (C) 2013 Google Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 13 matching lines...) Expand all
24 #include "config.h" 24 #include "config.h"
25 #include "platform/graphics/filters/FEColorMatrix.h" 25 #include "platform/graphics/filters/FEColorMatrix.h"
26 26
27 #include "SkColorFilterImageFilter.h" 27 #include "SkColorFilterImageFilter.h"
28 #include "SkColorMatrixFilter.h" 28 #include "SkColorMatrixFilter.h"
29 #include "platform/graphics/filters/SkiaImageFilterBuilder.h" 29 #include "platform/graphics/filters/SkiaImageFilterBuilder.h"
30 #include "platform/text/TextStream.h" 30 #include "platform/text/TextStream.h"
31 31
32 namespace blink { 32 namespace blink {
33 33
34 static const unsigned kColorMatrixSize = 20;
35
34 FEColorMatrix::FEColorMatrix(Filter* filter, ColorMatrixType type, const Vector< float>& values) 36 FEColorMatrix::FEColorMatrix(Filter* filter, ColorMatrixType type, const Vector< float>& values)
35 : FilterEffect(filter) 37 : FilterEffect(filter)
36 , m_type(type) 38 , m_type(type)
37 , m_values(values) 39 , m_values(values)
38 { 40 {
39 } 41 }
40 42
41 PassRefPtrWillBeRawPtr<FEColorMatrix> FEColorMatrix::create(Filter* filter, Colo rMatrixType type, const Vector<float>& values) 43 PassRefPtrWillBeRawPtr<FEColorMatrix> FEColorMatrix::create(Filter* filter, Colo rMatrixType type, const Vector<float>& values)
42 { 44 {
43 return adoptRefWillBeNoop(new FEColorMatrix(filter, type, values)); 45 return adoptRefWillBeNoop(new FEColorMatrix(filter, type, values));
(...skipping 18 matching lines...) Expand all
62 } 64 }
63 65
64 bool FEColorMatrix::setValues(const Vector<float> &values) 66 bool FEColorMatrix::setValues(const Vector<float> &values)
65 { 67 {
66 if (m_values == values) 68 if (m_values == values)
67 return false; 69 return false;
68 m_values = values; 70 m_values = values;
69 return true; 71 return true;
70 } 72 }
71 73
72 static void saturateMatrix(float s, SkScalar matrix[20]) 74 static void saturateMatrix(float s, SkScalar matrix[kColorMatrixSize])
73 { 75 {
74 matrix[0] = 0.213f + 0.787f * s; 76 matrix[0] = 0.213f + 0.787f * s;
75 matrix[1] = 0.715f - 0.715f * s; 77 matrix[1] = 0.715f - 0.715f * s;
76 matrix[2] = 0.072f - 0.072f * s; 78 matrix[2] = 0.072f - 0.072f * s;
77 matrix[3] = matrix[4] = 0; 79 matrix[3] = matrix[4] = 0;
78 matrix[5] = 0.213f - 0.213f * s; 80 matrix[5] = 0.213f - 0.213f * s;
79 matrix[6] = 0.715f + 0.285f * s; 81 matrix[6] = 0.715f + 0.285f * s;
80 matrix[7] = 0.072f - 0.072f * s; 82 matrix[7] = 0.072f - 0.072f * s;
81 matrix[8] = matrix[9] = 0; 83 matrix[8] = matrix[9] = 0;
82 matrix[10] = 0.213f - 0.213f * s; 84 matrix[10] = 0.213f - 0.213f * s;
83 matrix[11] = 0.715f - 0.715f * s; 85 matrix[11] = 0.715f - 0.715f * s;
84 matrix[12] = 0.072f + 0.928f * s; 86 matrix[12] = 0.072f + 0.928f * s;
85 matrix[13] = matrix[14] = 0; 87 matrix[13] = matrix[14] = 0;
86 matrix[15] = matrix[16] = matrix[17] = 0; 88 matrix[15] = matrix[16] = matrix[17] = 0;
87 matrix[18] = 1; 89 matrix[18] = 1;
88 matrix[19] = 0; 90 matrix[19] = 0;
89 } 91 }
90 92
91 static void hueRotateMatrix(float hue, SkScalar matrix[20]) 93 static void hueRotateMatrix(float hue, SkScalar matrix[kColorMatrixSize])
92 { 94 {
93 float cosHue = cosf(hue * piFloat / 180); 95 float cosHue = cosf(hue * piFloat / 180);
94 float sinHue = sinf(hue * piFloat / 180); 96 float sinHue = sinf(hue * piFloat / 180);
95 matrix[0] = 0.213f + cosHue * 0.787f - sinHue * 0.213f; 97 matrix[0] = 0.213f + cosHue * 0.787f - sinHue * 0.213f;
96 matrix[1] = 0.715f - cosHue * 0.715f - sinHue * 0.715f; 98 matrix[1] = 0.715f - cosHue * 0.715f - sinHue * 0.715f;
97 matrix[2] = 0.072f - cosHue * 0.072f + sinHue * 0.928f; 99 matrix[2] = 0.072f - cosHue * 0.072f + sinHue * 0.928f;
98 matrix[3] = matrix[4] = 0; 100 matrix[3] = matrix[4] = 0;
99 matrix[5] = 0.213f - cosHue * 0.213f + sinHue * 0.143f; 101 matrix[5] = 0.213f - cosHue * 0.213f + sinHue * 0.143f;
100 matrix[6] = 0.715f + cosHue * 0.285f + sinHue * 0.140f; 102 matrix[6] = 0.715f + cosHue * 0.285f + sinHue * 0.140f;
101 matrix[7] = 0.072f - cosHue * 0.072f - sinHue * 0.283f; 103 matrix[7] = 0.072f - cosHue * 0.072f - sinHue * 0.283f;
102 matrix[8] = matrix[9] = 0; 104 matrix[8] = matrix[9] = 0;
103 matrix[10] = 0.213f - cosHue * 0.213f - sinHue * 0.787f; 105 matrix[10] = 0.213f - cosHue * 0.213f - sinHue * 0.787f;
104 matrix[11] = 0.715f - cosHue * 0.715f + sinHue * 0.715f; 106 matrix[11] = 0.715f - cosHue * 0.715f + sinHue * 0.715f;
105 matrix[12] = 0.072f + cosHue * 0.928f + sinHue * 0.072f; 107 matrix[12] = 0.072f + cosHue * 0.928f + sinHue * 0.072f;
106 matrix[13] = matrix[14] = 0; 108 matrix[13] = matrix[14] = 0;
107 matrix[15] = matrix[16] = matrix[17] = 0; 109 matrix[15] = matrix[16] = matrix[17] = 0;
108 matrix[18] = 1; 110 matrix[18] = 1;
109 matrix[19] = 0; 111 matrix[19] = 0;
110 } 112 }
111 113
112 static void luminanceToAlphaMatrix(SkScalar matrix[20]) 114 static void luminanceToAlphaMatrix(SkScalar matrix[kColorMatrixSize])
113 { 115 {
114 memset(matrix, 0, 20 * sizeof(SkScalar)); 116 memset(matrix, 0, kColorMatrixSize * sizeof(SkScalar));
115 matrix[15] = 0.2125f; 117 matrix[15] = 0.2125f;
116 matrix[16] = 0.7154f; 118 matrix[16] = 0.7154f;
117 matrix[17] = 0.0721f; 119 matrix[17] = 0.0721f;
118 } 120 }
119 121
120 static SkColorFilter* createColorFilter(ColorMatrixType type, const float* value s) 122 static SkColorFilter* createColorFilter(ColorMatrixType type, const Vector<float >& values)
121 { 123 {
122 SkScalar matrix[20]; 124 // Use defaults if values contains too few values. See SVGFEColorMatrixEleme nt::build
125 SkScalar matrix[kColorMatrixSize];
126 memset(matrix, 0, kColorMatrixSize * sizeof(SkScalar));
127 matrix[0] = matrix[6] = matrix[12] = matrix[18] = 1;
128
123 switch (type) { 129 switch (type) {
124 case FECOLORMATRIX_TYPE_UNKNOWN: 130 case FECOLORMATRIX_TYPE_UNKNOWN:
125 break; 131 break;
126 case FECOLORMATRIX_TYPE_MATRIX: 132 case FECOLORMATRIX_TYPE_MATRIX:
127 for (int i = 0; i < 20; ++i) 133 if (values.size() >= kColorMatrixSize) {
128 matrix[i] = values[i]; 134 for (unsigned i = 0; i < kColorMatrixSize; ++i)
129 135 matrix[i] = values[i];
136 }
130 matrix[4] *= SkScalar(255); 137 matrix[4] *= SkScalar(255);
131 matrix[9] *= SkScalar(255); 138 matrix[9] *= SkScalar(255);
132 matrix[14] *= SkScalar(255); 139 matrix[14] *= SkScalar(255);
133 matrix[19] *= SkScalar(255); 140 matrix[19] *= SkScalar(255);
134 break; 141 break;
135 case FECOLORMATRIX_TYPE_SATURATE: 142 case FECOLORMATRIX_TYPE_SATURATE:
136 saturateMatrix(values[0], matrix); 143 if (values.size())
144 saturateMatrix(values[0], matrix);
137 break; 145 break;
138 case FECOLORMATRIX_TYPE_HUEROTATE: 146 case FECOLORMATRIX_TYPE_HUEROTATE:
139 hueRotateMatrix(values[0], matrix); 147 if (values.size())
148 hueRotateMatrix(values[0], matrix);
140 break; 149 break;
141 case FECOLORMATRIX_TYPE_LUMINANCETOALPHA: 150 case FECOLORMATRIX_TYPE_LUMINANCETOALPHA:
142 luminanceToAlphaMatrix(matrix); 151 luminanceToAlphaMatrix(matrix);
143 break; 152 break;
144 } 153 }
145 return SkColorMatrixFilter::Create(matrix); 154 return SkColorMatrixFilter::Create(matrix);
146 } 155 }
147 156
148 bool FEColorMatrix::affectsTransparentPixels() 157 bool FEColorMatrix::affectsTransparentPixels()
149 { 158 {
150 // Because the input pixels are premultiplied, the only way clear pixels can be 159 // Because the input pixels are premultiplied, the only way clear pixels can be
151 // painted is if the additive component for the alpha is not 0. 160 // painted is if the additive component for the alpha is not 0.
152 return m_type == FECOLORMATRIX_TYPE_MATRIX && m_values[19] > 0; 161 return m_type == FECOLORMATRIX_TYPE_MATRIX && m_values.size() >= kColorMatri xSize && m_values[19] > 0;
153 } 162 }
154 163
155 PassRefPtr<SkImageFilter> FEColorMatrix::createImageFilter(SkiaImageFilterBuilde r* builder) 164 PassRefPtr<SkImageFilter> FEColorMatrix::createImageFilter(SkiaImageFilterBuilde r* builder)
156 { 165 {
157 RefPtr<SkImageFilter> input(builder->build(inputEffect(0), operatingColorSpa ce())); 166 RefPtr<SkImageFilter> input(builder->build(inputEffect(0), operatingColorSpa ce()));
158 SkAutoTUnref<SkColorFilter> filter(createColorFilter(m_type, m_values.data() )); 167 SkAutoTUnref<SkColorFilter> filter(createColorFilter(m_type, m_values));
159 SkImageFilter::CropRect rect = getCropRect(builder->cropOffset()); 168 SkImageFilter::CropRect rect = getCropRect(builder->cropOffset());
160 return adoptRef(SkColorFilterImageFilter::Create(filter, input.get(), &rect) ); 169 return adoptRef(SkColorFilterImageFilter::Create(filter, input.get(), &rect) );
161 } 170 }
162 171
163 static TextStream& operator<<(TextStream& ts, const ColorMatrixType& type) 172 static TextStream& operator<<(TextStream& ts, const ColorMatrixType& type)
164 { 173 {
165 switch (type) { 174 switch (type) {
166 case FECOLORMATRIX_TYPE_UNKNOWN: 175 case FECOLORMATRIX_TYPE_UNKNOWN:
167 ts << "UNKNOWN"; 176 ts << "UNKNOWN";
168 break; 177 break;
(...skipping 30 matching lines...) Expand all
199 ts << " "; 208 ts << " ";
200 } 209 }
201 ts << "\""; 210 ts << "\"";
202 } 211 }
203 ts << "]\n"; 212 ts << "]\n";
204 inputEffect(0)->externalRepresentation(ts, indent + 1); 213 inputEffect(0)->externalRepresentation(ts, indent + 1);
205 return ts; 214 return ts;
206 } 215 }
207 216
208 } // namespace blink 217 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/graphics/filters/FEColorMatrix.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698