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

Unified Diff: src/gpu/GrStencilBuffer.h

Issue 418143004: Rename GrGpuObject to GrGpuResource (Closed) Base URL: https://skia.googlesource.com/skia.git@compact
Patch Set: rebase Created 6 years, 5 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
Index: src/gpu/GrStencilBuffer.h
diff --git a/src/gpu/GrStencilBuffer.h b/src/gpu/GrStencilBuffer.h
index 696ba839129226847253ad24026543ccb75c707c..86fef50225b4cbac3f7c274961ba333d03294be4 100644
--- a/src/gpu/GrStencilBuffer.h
+++ b/src/gpu/GrStencilBuffer.h
@@ -11,12 +11,12 @@
#define GrStencilBuffer_DEFINED
#include "GrClipData.h"
-#include "GrGpuObject.h"
+#include "GrGpuResource.h"
class GrRenderTarget;
class GrResourceKey;
-class GrStencilBuffer : public GrGpuObject {
+class GrStencilBuffer : public GrGpuResource {
public:
SK_DECLARE_INST_COUNT(GrStencilBuffer);
@@ -54,7 +54,7 @@ public:
protected:
GrStencilBuffer(GrGpu* gpu, bool isWrapped, int width, int height, int bits, int sampleCnt)
- : GrGpuObject(gpu, isWrapped)
+ : GrGpuResource(gpu, isWrapped)
, fWidth(width)
, fHeight(height)
, fBits(bits)
@@ -74,7 +74,7 @@ private:
SkIRect fLastClipStackRect;
SkIPoint fLastClipSpaceOffset;
- typedef GrGpuObject INHERITED;
+ typedef GrGpuResource INHERITED;
};
#endif

Powered by Google App Engine
This is Rietveld 408576698