skia2/tools/gpu/d3d/D3DTestContext.cpp
Robert Phillips f4f8011aef Add Context factories to GrDirectContext
In order to stage the transition from GrContext to GrDirectContext, both
of them will have to have the factories for a while.

This CL also removes all internal uses of the old (GrContext) factories.

Change-Id: Ibe1edd0818ea23a0d54257c55f35f12526047ef3
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/302263
Commit-Queue: Robert Phillips <robertphillips@google.com>
Reviewed-by: Adlai Holler <adlai@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
2020-07-14 12:40:46 +00:00

76 lines
2.0 KiB
C++

/*
* Copyright 2020 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "tools/gpu/d3d/D3DTestContext.h"
#ifdef SK_DIRECT3D
#include "include/gpu/GrDirectContext.h"
#include "tools/gpu/d3d/D3DTestUtils.h"
namespace {
class D3DTestContextImpl : public sk_gpu_test::D3DTestContext {
public:
static D3DTestContext* Create(D3DTestContext* sharedContext) {
GrD3DBackendContext backendContext;
bool ownsContext;
if (sharedContext) {
// take from the given context
ownsContext = false;
backendContext = sharedContext->getD3DBackendContext();
} else {
// create our own
if (!sk_gpu_test::CreateD3DBackendContext(&backendContext)) {
return nullptr;
}
ownsContext = true;
}
return new D3DTestContextImpl(backendContext, ownsContext);
}
~D3DTestContextImpl() override { this->teardown(); }
void testAbandon() override {}
void finish() override {}
sk_sp<GrDirectContext> makeContext(const GrContextOptions& options) override {
return GrDirectContext::MakeDirect3D(fD3D, options);
}
protected:
void teardown() override {
INHERITED::teardown();
if (fOwnsContext) {
// delete all the D3D objects in the backend context
}
}
private:
D3DTestContextImpl(const GrD3DBackendContext& backendContext, bool ownsContext)
: D3DTestContext(backendContext, ownsContext) {
fFenceSupport = true;
}
void onPlatformMakeNotCurrent() const override {}
void onPlatformMakeCurrent() const override {}
std::function<void()> onPlatformGetAutoContextRestore() const override { return nullptr; }
typedef sk_gpu_test::D3DTestContext INHERITED;
};
} // anonymous namespace
namespace sk_gpu_test {
D3DTestContext* CreatePlatformD3DTestContext(D3DTestContext* sharedContext) {
return D3DTestContextImpl::Create(sharedContext);
}
} // namespace sk_gpu_test
#endif