Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Unified Diff: include/gpu/GrRenderTarget.h

Issue 1083133002: Rename GrStencilBuffer to GrStencilAttachment (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Align data member Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gyp/gpu.gypi ('k') | src/gpu/GrClipMaskManager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/gpu/GrRenderTarget.h
diff --git a/include/gpu/GrRenderTarget.h b/include/gpu/GrRenderTarget.h
index ae420cea6c3aaa9e7c98c23af7185221dc5985b4..5984bf71d8b514c10c44e2f40f7ba214bf56c738 100644
--- a/include/gpu/GrRenderTarget.h
+++ b/include/gpu/GrRenderTarget.h
@@ -11,7 +11,7 @@
#include "GrSurface.h"
#include "SkRect.h"
-class GrStencilBuffer;
+class GrStencilAttachment;
class GrRenderTargetPriv;
/**
@@ -96,7 +96,7 @@ public:
protected:
GrRenderTarget(GrGpu* gpu, LifeCycle lifeCycle, const GrSurfaceDesc& desc)
: INHERITED(gpu, lifeCycle, desc)
- , fStencilBuffer(NULL) {
+ , fStencilAttachment(NULL) {
fResolveRect.setLargestInverted();
}
@@ -110,9 +110,9 @@ private:
friend class GrRenderTargetPriv;
- GrStencilBuffer* fStencilBuffer;
+ GrStencilAttachment* fStencilAttachment;
- SkIRect fResolveRect;
+ SkIRect fResolveRect;
typedef GrSurface INHERITED;
};
« no previous file with comments | « gyp/gpu.gypi ('k') | src/gpu/GrClipMaskManager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698