f15c3ff9d3
and fix up the #include guards Bug: skia:12466 Change-Id: I865ebb00827001b2cf0f7d871e872a7be0f36c22 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/451156 Commit-Queue: Robert Phillips <robertphillips@google.com> Reviewed-by: Greg Daniel <egdaniel@google.com>
23 lines
331 B
C++
23 lines
331 B
C++
/*
|
|
* Copyright 2021 Google LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef skgpu_Context_DEFINED
|
|
#define skgpu_Context_DEFINED
|
|
|
|
namespace skgpu {
|
|
|
|
class Context {
|
|
public:
|
|
Context();
|
|
private:
|
|
};
|
|
|
|
} // namespace skgpu
|
|
|
|
#endif // skgpu_Context_DEFINED
|
|
|