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

Unified Diff: src/gpu/gl/GrGLCaps.h

Issue 12965018: Move nested class GrDrawTarget::Caps out as GrDrawTargetCaps. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 9 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/gl/GrGLCaps.h
===================================================================
--- src/gpu/gl/GrGLCaps.h (revision 8365)
+++ src/gpu/gl/GrGLCaps.h (working copy)
@@ -9,10 +9,10 @@
#ifndef GrGLCaps_DEFINED
#define GrGLCaps_DEFINED
+#include "GrDrawTargetCaps.h"
+#include "GrGLStencilBuffer.h"
#include "SkTArray.h"
#include "SkTDArray.h"
-#include "GrGLStencilBuffer.h"
-#include "GrDrawTarget.h"
class GrGLContextInfo;
@@ -21,7 +21,7 @@
* version and the extensions string. It also tracks formats that have passed
* the FBO completeness test.
*/
-class GrGLCaps : public GrDrawTarget::Caps {
+class GrGLCaps : public GrDrawTargetCaps {
public:
SK_DECLARE_INST_COUNT(GrGLCaps)
@@ -312,7 +312,7 @@
bool fUseNonVBOVertexAndIndexDynamicData : 1;
bool fIsCoreProfile : 1;
- typedef GrDrawTarget::Caps INHERITED;
+ typedef GrDrawTargetCaps INHERITED;
};
#endif

Powered by Google App Engine
This is Rietveld 408576698