Recent image filter work now allows this check to be enabled.

BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2379053002

Review-Url: https://codereview.chromium.org/2379053002
This commit is contained in:
brianosman 2016-09-29 10:08:36 -07:00 committed by Commit bot
parent 7c2213ba61
commit a9c3c6aea5

View File

@ -224,8 +224,7 @@ sk_sp<GrDrawContext> GrDrawingManager::makeDrawContext(sk_sp<GrRenderTarget> rt,
// by, including internal usage. We allow a null color space here, for read/write pixels and
// other special code paths. If a color space is provided, though, enforce all other rules.
if (colorSpace && !SkSurface_Gpu::Valid(fContext, rt->config(), colorSpace.get())) {
// SRGBTODO: Enable this assert once image filters are propagating color type and space
// SkDEBUGFAIL("Invalid config and colorspace combination");
SkDEBUGFAIL("Invalid config and colorspace combination");
return nullptr;
}