Scaling pixmap with RGBA_4444 fails. |
||||
Issue descriptionWhile investigating a blimp issue where we accidentally started passing high filter quality flag on svelte devices, we bumped into an issue where we can't scale a pixmap if the draw info has an RGBA_4444 color type. Specifically this switch statement ends up returning false: https://code.google.com/p/chromium/codesearch#chromium/src/third_party/skia/src/image/SkSurface_Raster.cpp&sq=package:chromium&l=50&rcl=1459970814 I guess, the question is: is this intentional? Why can't we support RGBA_4444 in this case?
,
Apr 7 2016
Is this something that we want to support? I guess it's just dev effort right?
,
Apr 7 2016
We removed it mostly because the quality was pretty horrible. Far better to draw into 8888 while you accumulate your drawing, and then convert to 4444 once at the end (to save ram)
,
Aug 2
,
Jan 16
|
||||
►
Sign in to add a comment |
||||
Comment 1 by reed@google.com
, Apr 7 2016