From fe0253f8bb64857df088d5ff54e2b5b66b102b46 Mon Sep 17 00:00:00 2001 From: Robert Phillips Date: Fri, 16 Mar 2018 16:47:25 -0400 Subject: Alter GrSurface/GrSurfaceProxy flags to prepare for GrTexture/GrTextureProxy -specific flags This CL: moves GrRenderTarget::fFlags to GrSurface::fSurfaceFlags adds a GrInternalSurfaceFlags type and uses it for GrSurfaceProxy::fSurfaceFlags The goal of this is to provide a location where GrTexture/GrTextureProxy-specific flags (i.e., isExternal & isRectangle) can be stored. Change-Id: I8df7b79036a6853dd378ff6cf10d4b37c60dd511 Reviewed-on: https://skia-review.googlesource.com/114796 Reviewed-by: Brian Salomon Commit-Queue: Robert Phillips --- tools/gpu/GrTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/gpu/GrTest.cpp') diff --git a/tools/gpu/GrTest.cpp b/tools/gpu/GrTest.cpp index 132f8a5054..cff99a11e2 100644 --- a/tools/gpu/GrTest.cpp +++ b/tools/gpu/GrTest.cpp @@ -294,8 +294,8 @@ uint32_t GrRenderTargetContextPriv::testingOnly_addDrawOp(const GrClip& clip, /////////////////////////////////////////////////////////////////////////////// -GrRenderTargetFlags GrRenderTargetProxy::testingOnly_getFlags() const { - return fRenderTargetFlags; +GrInternalSurfaceFlags GrSurfaceProxy::testingOnly_getFlags() const { + return fSurfaceFlags; } ////////////////////////////////////////////////////////////////////////////// -- cgit v1.2.3