Skip to content

Commit

Permalink
Fix EXIF orentation problem (flutter#6974)
Browse files Browse the repository at this point in the history
  • Loading branch information
goderbauer authored Nov 27, 2018
1 parent 2ab0194 commit 2f706be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions shell/common/io_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ sk_sp<GrContext> IOManager::CreateCompatibleResourceLoadingContext(
// thread. The necessary work isn't being flushed or synchronized with the
// other threads correctly, so the textures end up blank. For now, suppress
// that feature, which will cause texture uploads to do CPU YUV conversion.
// A similar work-around is also used in shell/gpu/gpu_surface_gl.cc.
options.fDisableGpuYUVConversion = true;

// To get video playback on the widest range of devices, we limit Skia to
Expand Down
4 changes: 4 additions & 0 deletions shell/gpu/gpu_surface_gl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ GPUSurfaceGL::GPUSurfaceGL(GPUSurfaceGLDelegate* delegate)
// ES2 shading language when the ES3 external image extension is missing.
options.fPreferExternalImagesOverES3 = true;

// TODO(goderbauer): remove option when skbug.com/7523 is fixed.
// A similar work-around is also used in shell/common/io_manager.cc.
options.fDisableGpuYUVConversion = true;

sk_sp<const GrGLInterface> interface;

if (proc_resolver_ == nullptr) {
Expand Down

0 comments on commit 2f706be

Please sign in to comment.