diff options
author | Brian Salomon <bsalomon@google.com> | 2018-03-08 10:13:17 -0500 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-03-08 15:34:41 +0000 |
commit | f7778979343998e4c10df8ebe43f02e60c700f0d (patch) | |
tree | d87e36994c7c74c1df49002bcb7d7b76b262c28a /src/gpu/gl | |
parent | c7c2baf0cf264b9d0d9c0f67cfb827a7e4a5e32c (diff) |
Delazify wrapped backend textures/render target proxies
These methods will fail on DDL contexts.
This is in preparation for removing the ability to specify origin for lazy proxies.
Change-Id: Iadcedfd4fce8ea2590729c974128e5c58cec38a8
Reviewed-on: https://skia-review.googlesource.com/112802
Commit-Queue: Brian Salomon <bsalomon@google.com>
Reviewed-by: Greg Daniel <egdaniel@google.com>
Diffstat (limited to 'src/gpu/gl')
-rw-r--r-- | src/gpu/gl/GrGLCaps.cpp | 7 | ||||
-rw-r--r-- | src/gpu/gl/GrGLCaps.h | 1 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/gpu/gl/GrGLCaps.cpp b/src/gpu/gl/GrGLCaps.cpp index 957811e70f..aec7a37e1b 100644 --- a/src/gpu/gl/GrGLCaps.cpp +++ b/src/gpu/gl/GrGLCaps.cpp @@ -2452,13 +2452,6 @@ bool GrGLCaps::surfaceSupportsWritePixels(const GrSurface* surface) const { return true; } -bool GrGLCaps::onIsMixedSamplesSupportedForRT(const GrBackendRenderTarget& backendRT) const { - const GrGLFramebufferInfo* fbInfo = backendRT.getGLFramebufferInfo(); - SkASSERT(fbInfo); - // Mixed samples are not supported for FBO 0; - return fbInfo->fFBOID != 0; -} - bool GrGLCaps::onIsWindowRectanglesSupportedForRT(const GrBackendRenderTarget& backendRT) const { const GrGLFramebufferInfo* fbInfo = backendRT.getGLFramebufferInfo(); SkASSERT(fbInfo); diff --git a/src/gpu/gl/GrGLCaps.h b/src/gpu/gl/GrGLCaps.h index dbcccd5edd..5d3fa6a6f6 100644 --- a/src/gpu/gl/GrGLCaps.h +++ b/src/gpu/gl/GrGLCaps.h @@ -435,7 +435,6 @@ private: void onApplyOptionsOverrides(const GrContextOptions& options) override; - bool onIsMixedSamplesSupportedForRT(const GrBackendRenderTarget&) const override; bool onIsWindowRectanglesSupportedForRT(const GrBackendRenderTarget&) const override; void initFSAASupport(const GrContextOptions& contextOptions, const GrGLContextInfo&, |