skia2/tools/gpu/d3d/D3DTestContext.h
John Stiles 7571f9e490 Replace 'typedef xxxxx INHERITED' with 'using INHERITED = xxxx;'.
Mechanically updated via Xcode "Replace Regular Expression":

  typedef (.*) INHERITED;
    -->
  using INHERITED = $1;

The ClangTidy approach generated an even larger CL which would have
required a significant amount of hand-tweaking to be usable.

Change-Id: I671dc9d9efdf6d60151325c8d4d13fad7e10a15b
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/314999
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Mike Klein <mtklein@google.com>
Auto-Submit: John Stiles <johnstiles@google.com>
2020-09-03 03:41:26 +00:00

48 lines
990 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; }
const GrD3DBackendContext& getD3DBackendContext() const {
return fD3D;
}
protected:
D3DTestContext(const GrD3DBackendContext& d3d, bool ownsContext)
: fD3D(d3d)
, fOwnsContext(ownsContext) {}
GrD3DBackendContext fD3D;
bool fOwnsContext;
private:
using INHERITED = TestContext;
};
/**
* Creates D3D context object bound to the native D3D library.
*/
D3DTestContext* CreatePlatformD3DTestContext(D3DTestContext*);
} // namespace sk_gpu_test
#endif
#endif