* Copyright 2021 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GraphiteMetalWindowContext_DEFINED
#define GraphiteMetalWindowContext_DEFINED
#include "include/core/SkRefCnt.h"
#include "include/ports/SkCFObject.h"
#include "tools/window/WindowContext.h"
#import <Metal/Metal.h>
#import <QuartzCore/CAMetalLayer.h>
class SkSurface;
namespace skwindow::internal {
class GraphiteMetalWindowContext : public WindowContext {
public:
sk_sp<SkSurface> getBackbufferSurface() override;
bool isValid() override { return fValid; }
void setDisplayParams(std::unique_ptr<const DisplayParams> params) override;
void activate(bool isActive) override;
protected:
GraphiteMetalWindowContext(std::unique_ptr<const DisplayParams>);
void initializeContext();
virtual bool onInitializeContext() = 0;
void destroyContext();
virtual void onDestroyContext() = 0;
void onSwapBuffers() override;
bool fValid;
sk_cfp<id<MTLDevice>> fDevice;
sk_cfp<id<MTLCommandQueue>> fQueue;
CAMetalLayer* fMetalLayer;
CFTypeRef fDrawableHandle;
};
}
#endif