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

Unified Diff: tools/gpu/gl/command_buffer/GLTestContext_command_buffer.h

Issue 1850543003: Revert of rename sk_gpu_test::GLContext to sk_gpu_test::GLTestContext (Closed) Base URL: https://chromium.googlesource.com/skia.git@move
Patch Set: Created 4 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: tools/gpu/gl/command_buffer/GLTestContext_command_buffer.h
diff --git a/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.h b/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.h
deleted file mode 100644
index 0994c98c8b2db5b6925807ad66773a61860560a3..0000000000000000000000000000000000000000
--- a/tools/gpu/gl/command_buffer/GLTestContext_command_buffer.h
+++ /dev/null
@@ -1,68 +0,0 @@
-
-/*
- * Copyright 2015 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef GLTestContext_command_buffer_DEFINED
-#define GLTestContext_command_buffer_DEFINED
-
-#include "gl/GLTestContext.h"
-
-namespace sk_gpu_test {
-class CommandBufferGLTestContext : public GLTestContext {
-public:
- ~CommandBufferGLTestContext() override;
-
- static CommandBufferGLTestContext *Create() {
- CommandBufferGLTestContext *ctx = new CommandBufferGLTestContext;
- if (!ctx->isValid()) {
- delete ctx;
- return nullptr;
- }
- return ctx;
- }
-
- static CommandBufferGLTestContext *Create(void *nativeWindow, int msaaSampleCount) {
- CommandBufferGLTestContext *ctx = new CommandBufferGLTestContext(nativeWindow, msaaSampleCount);
- if (!ctx->isValid()) {
- delete ctx;
- return nullptr;
- }
- return ctx;
- }
-
- void presentCommandBuffer();
-
- bool makeCurrent();
-
- int getStencilBits();
-
- int getSampleCount();
-
-private:
- CommandBufferGLTestContext();
-
- CommandBufferGLTestContext(void *nativeWindow, int msaaSampleCount);
-
- void initializeGLContext(void *nativeWindow, const int *configAttribs,
- const int *surfaceAttribs);
-
- void destroyGLContext();
-
- void onPlatformMakeCurrent() const override;
-
- void onPlatformSwapBuffers() const override;
-
- GrGLFuncPtr onPlatformGetProcAddress(const char *name) const override;
-
- void *fContext;
- void *fDisplay;
- void *fSurface;
- void *fConfig;
-};
-} // namespace sk_gpu_test
-
-#endif
« no previous file with comments | « tools/gpu/gl/command_buffer/GLContext_command_buffer.cpp ('k') | tools/gpu/gl/command_buffer/GLTestContext_command_buffer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698