aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/skiaserve
diff options
context:
space:
mode:
authorGravatar brianosman <brianosman@google.com>2016-07-26 08:11:50 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-07-26 08:11:50 -0700
commitefded51cd8122c1360717161d3455f2a48a37bc0 (patch)
tree8bc7be4c07b7fbcf81f97891d85a1b8debb418c4 /tools/skiaserve
parentf660b7cfcfbf3062f88e61f8320ea7051da72213 (diff)
Always supply a color space (sRGB for now) with F16
Diffstat (limited to 'tools/skiaserve')
-rw-r--r--tools/skiaserve/Request.cpp2
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 },
};
}