273c0f5e87
rename subclasses Fix up the EGL native GLTestContext GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1849463002 TBR=jvanverth@google.com Committed: https://skia.googlesource.com/skia/+/4c7f0a16312c374eba4e8d5d46435ce9eb0b9971 Review URL: https://codereview.chromium.org/1849463002
69 lines
1.6 KiB
C++
69 lines
1.6 KiB
C++
|
|
/*
|
|
* 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
|