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

Unified Diff: ui/gfx/color_analysis.cc

Issue 399053002: ui/gfx: optimize UnPreMultiply operation by checking alpha value (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/color_analysis.cc
diff --git a/ui/gfx/color_analysis.cc b/ui/gfx/color_analysis.cc
index b6af2fee18393b46ac7fe52e52dc4c0347a13b12..f23da853e43f119bf7ebb7e38d95db9f62f5b22d 100644
--- a/ui/gfx/color_analysis.cc
+++ b/ui/gfx/color_analysis.cc
@@ -11,6 +11,7 @@
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "third_party/skia/include/core/SkBitmap.h"
+#include "third_party/skia/include/core/SkColorPriv.h"
#include "third_party/skia/include/core/SkUnPreMultiply.h"
#include "ui/gfx/codec/png_codec.h"
#include "ui/gfx/color_utils.h"
@@ -129,15 +130,19 @@ class KMeanCluster {
uint32_t weight;
};
-// Un-premultiplies each pixel in |bitmap| into an output |buffer|. Requires
-// approximately 10 microseconds for a 16x16 icon on an Intel Core i5.
+// Un-premultiplies each pixel in |bitmap| into an output |buffer|.
void UnPreMultiply(const SkBitmap& bitmap, uint32_t* buffer, int buffer_size) {
SkAutoLockPixels auto_lock(bitmap);
uint32_t* in = static_cast<uint32_t*>(bitmap.getPixels());
uint32_t* out = buffer;
int pixel_count = std::min(bitmap.width() * bitmap.height(), buffer_size);
- for (int i = 0; i < pixel_count; ++i)
- *out++ = SkUnPreMultiply::PMColorToColor(*in++);
+ for (int i = 0; i < pixel_count; ++i) {
+ int alpha = SkGetPackedA32(*in);
+ if (alpha != 0 && alpha != 255)
+ *out++ = SkUnPreMultiply::PMColorToColor(*in++);
+ else
+ *out++ = *in++;
+ }
}
} // namespace
@@ -434,7 +439,13 @@ gfx::Matrix3F ComputeColorCovariance(const SkBitmap& bitmap) {
for (int y = 0; y < bitmap.height(); ++y) {
SkPMColor* current_color = static_cast<uint32_t*>(bitmap.getAddr32(0, y));
for (int x = 0; x < bitmap.width(); ++x, ++current_color) {
- SkColor c = SkUnPreMultiply::PMColorToColor(*current_color);
+ SkColor c;
+ int alpha = SkGetPackedA32(*current_color);
+ if (alpha != 0 && alpha != 255)
+ c = SkUnPreMultiply::PMColorToColor(*current_color);
+ else
+ c = *current_color;
+
SkColor r = SkColorGetR(c);
SkColor g = SkColorGetG(c);
SkColor b = SkColorGetB(c);
@@ -511,7 +522,13 @@ bool ApplyColorReduction(const SkBitmap& source_bitmap,
const SkPMColor* source_color_row = static_cast<SkPMColor*>(
source_bitmap.getAddr32(0, y));
for (int x = 0; x < source_bitmap.width(); ++x) {
- SkColor c = SkUnPreMultiply::PMColorToColor(source_color_row[x]);
+ SkColor c;
+ int alpha = SkGetPackedA32(source_color_row[x]);
+ if (alpha != 0 && alpha != 255)
+ c = SkUnPreMultiply::PMColorToColor(source_color_row[x]);
+ else
+ c = source_color_row[x];
+
float r = SkColorGetR(c);
float g = SkColorGetG(c);
float b = SkColorGetB(c);
@@ -537,7 +554,13 @@ bool ApplyColorReduction(const SkBitmap& source_bitmap,
source_bitmap.getAddr32(0, y));
uint8_t* target_color_row = target_bitmap->getAddr8(0, y);
for (int x = 0; x < source_bitmap.width(); ++x) {
- SkColor c = SkUnPreMultiply::PMColorToColor(source_color_row[x]);
+ SkColor c;
+ int alpha = SkGetPackedA32(source_color_row[x]);
+ if (alpha != 0 && alpha != 255)
+ c = SkUnPreMultiply::PMColorToColor(source_color_row[x]);
+ else
+ c = source_color_row[x];
+
float r = SkColorGetR(c);
float g = SkColorGetG(c);
float b = SkColorGetB(c);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698