diff options
author | brianosman <brianosman@google.com> | 2016-07-26 08:11:50 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-26 08:11:50 -0700 |
commit | efded51cd8122c1360717161d3455f2a48a37bc0 (patch) | |
tree | 8bc7be4c07b7fbcf81f97891d85a1b8debb418c4 /tools/skiaserve | |
parent | f660b7cfcfbf3062f88e61f8320ea7051da72213 (diff) |
Always supply a color space (sRGB for now) with F16
BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2177193004
Review-Url: https://codereview.chromium.org/2177193004
Diffstat (limited to 'tools/skiaserve')
-rw-r--r-- | tools/skiaserve/Request.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/skiaserve/Request.cpp b/tools/skiaserve/Request.cpp index 44e5ddfa9d..f61ed5554a 100644 --- a/tools/skiaserve/Request.cpp +++ b/tools/skiaserve/Request.cpp @@ -167,7 +167,7 @@ struct ColorAndProfile { ColorAndProfile ColorModes[] = { { kN32_SkColorType, false, false }, { kN32_SkColorType, true, true }, - { kRGBA_F16_SkColorType, false, true }, + { kRGBA_F16_SkColorType, true, true }, }; } |