032aaae5be
Change-Id: I437a4a0a58bf70ea1b8b0659b099a2af2bfa64fe Reviewed-on: https://skia-review.googlesource.com/116197 Commit-Queue: Brian Salomon <bsalomon@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com>
50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
|
|
/*
|
|
* Copyright 2017 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#ifndef GLTestContext_DEFINED
|
|
#define GLTestContext_DEFINED
|
|
|
|
#include "MockTestContext.h"
|
|
|
|
#include "GrContext.h"
|
|
|
|
namespace {
|
|
|
|
class MockTestContext : public sk_gpu_test::TestContext {
|
|
public:
|
|
MockTestContext() {}
|
|
~MockTestContext() override {}
|
|
|
|
virtual GrBackend backend() override { return kMock_GrBackend; }
|
|
|
|
void testAbandon() override {}
|
|
void submit() override {}
|
|
void finish() override {}
|
|
|
|
sk_sp<GrContext> makeGrContext(const GrContextOptions& options) override {
|
|
return GrContext::MakeMock(nullptr, options);
|
|
}
|
|
|
|
protected:
|
|
void teardown() override {}
|
|
void onPlatformMakeCurrent() const override {}
|
|
std::function<void()> onPlatformGetAutoContextRestore() const override { return nullptr; }
|
|
void onPlatformSwapBuffers() const override {}
|
|
|
|
private:
|
|
typedef sk_gpu_test::TestContext INHERITED;
|
|
};
|
|
|
|
} // anonymous namespace
|
|
|
|
namespace sk_gpu_test {
|
|
|
|
TestContext* CreateMockTestContext(TestContext*) { return new MockTestContext(); }
|
|
|
|
} // namespace sk_gpu_test
|
|
#endif
|