diff options
author | Brian Salomon <bsalomon@google.com> | 2018-03-19 14:01:21 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-03-19 18:43:25 +0000 |
commit | cb88470d82d646972a7e83d04bb19444d87dd840 (patch) | |
tree | d034fc09d11662ec1e81adf4ade799e9ae41548d /include/core | |
parent | be5947c2f38a79b7c709accfb1047d8fd06a0227 (diff) |
Remove SkSurface::MakeFromBackendTextureAsRenderTarget variant that doesn't take SkColorType
Bug: skia:6718
Change-Id: I3fabe2050394bfbd8ad2fa600d07323838308ae5
Reviewed-on: https://skia-review.googlesource.com/115087
Reviewed-by: Greg Daniel <egdaniel@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
Diffstat (limited to 'include/core')
-rw-r--r-- | include/core/SkSurface.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/include/core/SkSurface.h b/include/core/SkSurface.h index 5a3887ef02..456ee362f2 100644 --- a/include/core/SkSurface.h +++ b/include/core/SkSurface.h @@ -286,30 +286,6 @@ public: @param backendTexture texture residing on GPU @param origin one of: kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin @param sampleCnt samples per pixel, or 0 to disable full scene anti-aliasing - @param colorSpace range of colors - @param surfaceProps LCD striping orientation and setting for device independent - fonts; may be nullptr - @return SkSurface if all parameters are valid; otherwise, nullptr - */ - static sk_sp<SkSurface> MakeFromBackendTextureAsRenderTarget(GrContext* context, - const GrBackendTexture& backendTexture, - GrSurfaceOrigin origin, - int sampleCnt, - sk_sp<SkColorSpace> colorSpace, - const SkSurfaceProps* surfaceProps); - - /** Used to wrap a GPU-backed texture as a SkSurface. Skia will treat the texture as - a rendering target only, but unlike NewFromBackendRenderTarget, Skia will manage and own - the associated render target objects (but not the provided texture). Skia will not assume - ownership of the texture and the client must ensure the texture is valid for the lifetime - of the SkSurface. - - If SK_SUPPORT_GPU is defined as zero, has no effect and returns nullptr. - - @param context GPU context - @param backendTexture texture residing on GPU - @param origin one of: kBottomLeft_GrSurfaceOrigin, kTopLeft_GrSurfaceOrigin - @param sampleCnt samples per pixel, or 0 to disable full scene anti-aliasing @param colorType one of: kUnknown_SkColorType, kAlpha_8_SkColorType, kRGB_565_SkColorType, kARGB_4444_SkColorType, kRGBA_8888_SkColorType, kBGRA_8888_SkColorType, |