aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/codec
diff options
context:
space:
mode:
authorGravatar msarett <msarett@google.com>2016-07-28 17:11:18 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-28 17:11:18 -0700
commit39979d8c6b97889f600a212cfc9b063360f3de2f (patch)
tree3a63566b6e7643335fda8c60451b922c73bac92e /include/codec
parentecf3dbe8f2987a08b21be1aff61b7fbfbb69640a (diff)
Revert of Add color space xform support to SkJpegCodec (includes F16!) (patchset #9 id:260001 of https://codereview.chromium.org/2174493002/ )
Reason for revert: Breaking MSAN Original issue's description: > Add color space xform support to SkJpegCodec (includes F16!) > > Also changes SkColorXform to support: > RGBA->RGBA > RGBA->BGRA > > Instead of: > RGBA->SkPMColor > > TBR=reed@google.com > BUG=skia: > GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2174493002 > CQ_INCLUDE_TRYBOTS=master.client.skia:Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-SKNX_NO_SIMD-Trybot > > Committed: https://skia.googlesource.com/skia/+/73d55332e2846dd05e9efdaa2f017bcc3872884b TBR=mtklein@google.com,reed@google.com,herb@google.com,brianosman@google.com # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review-Url: https://codereview.chromium.org/2195523002
Diffstat (limited to 'include/codec')
-rw-r--r--include/codec/SkCodec.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/codec/SkCodec.h b/include/codec/SkCodec.h
index c5dc66a474..5c84e07c70 100644
--- a/include/codec/SkCodec.h
+++ b/include/codec/SkCodec.h
@@ -286,12 +286,6 @@ public:
* to scale. If the generator cannot perform this scale,
* it will return kInvalidScale.
*
- * If the info contains a non-null SkColorSpace, the codec
- * will perform the appropriate color space transformation.
- * If the caller passes in the same color space that was
- * reported by the codec, the color space transformation is
- * a no-op.
- *
* If info is kIndex8_SkColorType, then the caller must provide storage for up to 256
* SkPMColor values in ctable. On success the generator must copy N colors into that storage,
* (where N is the logical number of table entries) and set ctableCount to N.