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

Unified Diff: src/gpu/gl/GrGpuGL.cpp

Issue 15331003: fix slowness of getImageData() for CanvasRenderingContext2D in linux due to un-optimized format for… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: patch preferredReadPixelsConfig() Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/gpu/gl/GrGpuGL.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/gpu/gl/GrGpuGL.cpp
diff --git a/src/gpu/gl/GrGpuGL.cpp b/src/gpu/gl/GrGpuGL.cpp
index 035ef3bb1bf43c99d5d80552cf16c1bc317d959c..aa8e9c1531ef7ca515812791cfcea3a831f985ea 100644
--- a/src/gpu/gl/GrGpuGL.cpp
+++ b/src/gpu/gl/GrGpuGL.cpp
@@ -266,21 +266,24 @@ void GrGpuGL::fillInConfigRenderableTable() {
}
namespace {
-GrPixelConfig preferred_pixel_ops_config(GrPixelConfig config) {
+GrPixelConfig preferred_pixel_ops_config(GrPixelConfig config, GrPixelConfig targetConfig) {
if (GR_GL_RGBA_8888_PIXEL_OPS_SLOW && kRGBA_8888_GrPixelConfig == config) {
return kBGRA_8888_GrPixelConfig;
+ } else if (config == targetConfig
+ || (GrBytesPerPixel(config) == 4 && GrPixelConfigSwapRAndB(config) == targetConfig)) {
+ return targetConfig;
} else {
return config;
}
}
}
-GrPixelConfig GrGpuGL::preferredReadPixelsConfig(GrPixelConfig config) const {
- return preferred_pixel_ops_config(config);
+GrPixelConfig GrGpuGL::preferredReadPixelsConfig(GrPixelConfig readConfig, GrPixelConfig targetConfig) const {
+ return preferred_pixel_ops_config(readConfig, targetConfig);
}
-GrPixelConfig GrGpuGL::preferredWritePixelsConfig(GrPixelConfig config) const {
- return preferred_pixel_ops_config(config);
+GrPixelConfig GrGpuGL::preferredWritePixelsConfig(GrPixelConfig writeConfig, GrPixelConfig targetConfig) const {
+ return preferred_pixel_ops_config(writeConfig, targetConfig);
}
bool GrGpuGL::canWriteTexturePixels(const GrTexture* texture, GrPixelConfig srcConfig) const {
« no previous file with comments | « src/gpu/gl/GrGpuGL.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698