Index: tools/gpu/gl/debug/DebugGLTestContext.cpp |
diff --git a/tools/gpu/gl/debug/DebugGLContext.cpp b/tools/gpu/gl/debug/DebugGLTestContext.cpp |
similarity index 99% |
rename from tools/gpu/gl/debug/DebugGLContext.cpp |
rename to tools/gpu/gl/debug/DebugGLTestContext.cpp |
index f4cbbea6802f83606aa376da8319c2f838adf058..96640c5908c07de26d685e2572463037b7130086 100644 |
--- a/tools/gpu/gl/debug/DebugGLContext.cpp |
+++ b/tools/gpu/gl/debug/DebugGLTestContext.cpp |
@@ -6,7 +6,7 @@ |
* found in the LICENSE file. |
*/ |
-#include "DebugGLContext.h" |
+#include "DebugGLTestContext.h" |
#include "GrBufferObj.h" |
#include "GrFrameBufferObj.h" |
@@ -1229,7 +1229,7 @@ const char* DebugInterface::kExtensions[] = { |
nullptr, // signifies the end of the array. |
}; |
-class DebugGLContext : public sk_gpu_test::GLContext { |
+class DebugGLContext : public sk_gpu_test::GLTestContext { |
public: |
DebugGLContext() { |
this->init(new DebugInterface()); |
@@ -1245,8 +1245,8 @@ private: |
} // anonymous namespace |
namespace sk_gpu_test { |
-GLContext* CreateDebugGLContext() { |
- GLContext* ctx = new DebugGLContext(); |
+GLTestContext* CreateDebugGLTestContext() { |
+ GLTestContext* ctx = new DebugGLContext(); |
if (ctx->isValid()) { |
return ctx; |
} |