skia2/tools/gpu/d3d/D3DTestContext.h
Jim Van Verth b01e12b716 Start adding D3D backend
Bug: skia:
Change-Id: Id24ed653adb80fe9b2ad597a34e459eb91ca53ec
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/271057
Commit-Queue: Jim Van Verth <jvanverth@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
2020-02-18 20:14:15 +00:00

44 lines
900 B
C++

/*
* Copyright 2020 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef D3DTestContext_DEFINED
#define D3DTestContext_DEFINED
#include "tools/gpu/TestContext.h"
#ifdef SK_DIRECT3D
#include "include/gpu/d3d/GrD3DBackendContext.h"
namespace sk_gpu_test {
class D3DTestContext : public TestContext {
public:
virtual GrBackendApi backend() override { return GrBackendApi::kDirect3D; }
protected:
D3DTestContext(const GrD3DBackendContext& d3d, bool ownsContext)
: fD3D(d3d)
, fOwnsContext(ownsContext) {}
GrD3DBackendContext fD3D;
bool fOwnsContext;
private:
typedef TestContext INHERITED;
};
/**
* Creates D3D context object bound to the native D3D library.
*/
D3DTestContext* CreatePlatformD3DTestContext(D3DTestContext*);
} // namespace sk_gpu_test
#endif
#endif