Index: src/image/SkSurface.cpp |
diff --git a/src/image/SkSurface.cpp b/src/image/SkSurface.cpp |
index 8f6e3089765f6bf2d19bed86ad36e14b69f8b8f6..2035e4cc8ae0ad1c2a77f378f36dac1f08c327af 100644 |
--- a/src/image/SkSurface.cpp |
+++ b/src/image/SkSurface.cpp |
@@ -223,7 +223,8 @@ void SkSurface::prepareForExternalIO() { |
#if !SK_SUPPORT_GPU |
-sk_sp<SkSurface> SkSurface::MakeRenderTargetDirect(GrRenderTarget*, const SkSurfaceProps*) { |
+sk_sp<SkSurface> SkSurface::MakeRenderTargetDirect(GrRenderTarget*, sk_sp<SkColorSpace>, |
+ const SkSurfaceProps*) { |
return nullptr; |
} |
@@ -233,18 +234,19 @@ sk_sp<SkSurface> SkSurface::MakeRenderTarget(GrContext*, SkBudgeted, const SkIma |
} |
sk_sp<SkSurface> SkSurface::MakeFromBackendTexture(GrContext*, const GrBackendTextureDesc&, |
- const SkSurfaceProps*) { |
+ sk_sp<SkColorSpace>, const SkSurfaceProps*) { |
return nullptr; |
} |
sk_sp<SkSurface> SkSurface::MakeFromBackendRenderTarget(GrContext*, |
const GrBackendRenderTargetDesc&, |
+ sk_sp<SkColorSpace>, |
const SkSurfaceProps*) { |
return nullptr; |
} |
sk_sp<SkSurface> MakeFromBackendTextureAsRenderTarget(GrContext*, const GrBackendTextureDesc&, |
- const SkSurfaceProps*) { |
+ sk_sp<SkColorSpace>, const SkSurfaceProps*) { |
return nullptr; |
} |