aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/surface.cpp
diff options
context:
space:
mode:
authorGravatar brianosman <brianosman@google.com>2016-08-30 07:07:59 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-30 07:07:59 -0700
commit0e22eb8e6efc7d7ab7a601ba555947916d139906 (patch)
tree8f4087433a195f8e874c0b83549552575cde0e75 /gm/surface.cpp
parent6f5df6acb7dec9788fe5d9c44f7892b896e21de3 (diff)
Some tests around surface creation and snapshotting with color space
Verify the rules that we're converging on for surfaces: - For 8888, we only support sRGB-like gamma, or no color space at all. - For F16, we require a color space, with linear gamma. - For all other formats, we do not support color spaces. BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2270823002 Review-Url: https://codereview.chromium.org/2270823002
Diffstat (limited to 'gm/surface.cpp')
-rw-r--r--gm/surface.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/gm/surface.cpp b/gm/surface.cpp
index 7c0b0c9d9f..6323c7047b 100644
--- a/gm/surface.cpp
+++ b/gm/surface.cpp
@@ -65,8 +65,7 @@ protected:
GrContext* ctx = canvas->getGrContext();
// must be opaque to have a hope of testing LCD text
- const SkImageInfo info = SkImageInfo::MakeN32(W, H, kOpaque_SkAlphaType,
- sk_ref_sp(canvas->imageInfo().colorSpace()));
+ const SkImageInfo info = SkImageInfo::MakeN32(W, H, kOpaque_SkAlphaType);
const struct {
SkPixelGeometry fGeo;