Index: src/core/SkSpecialSurface.cpp |
diff --git a/src/core/SkSpecialSurface.cpp b/src/core/SkSpecialSurface.cpp |
index b339c274768de45f7b0fac06e32c7e24648fae8b..02f54d8eac1f635ce0c055f2eb5a749d5fc34636 100644 |
--- a/src/core/SkSpecialSurface.cpp |
+++ b/src/core/SkSpecialSurface.cpp |
@@ -155,13 +155,15 @@ private: |
sk_sp<SkSpecialSurface> SkSpecialSurface::MakeRenderTarget(GrContext* context, |
int width, int height, |
- GrPixelConfig config) { |
+ GrPixelConfig config, |
+ sk_sp<SkColorSpace> colorSpace) { |
if (!context) { |
return nullptr; |
} |
sk_sp<GrDrawContext> drawContext(context->newDrawContext(SkBackingFit::kApprox, |
- width, height, config)); |
+ width, height, config, |
+ std::move(colorSpace))); |
if (!drawContext) { |
return nullptr; |
} |