blob: 8b973f717e67aac1d1c94c899559f340ab088f28 [file] [log] [blame]
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrMtlTypes_DEFINED
#define GrMtlTypes_DEFINED
#include "GrTypes.h"
/**
* Declares typedefs for Metal types used in Ganesh cpp code
*/
typedef unsigned int GrMTLPixelFormat;
///////////////////////////////////////////////////////////////////////////////
/**
* Types for interacting with Metal resources created externally to Skia. Holds the MTLTexture as a
* const void*. This is used by GrBackendObjects.
*/
struct GrMtlTextureInfo {
public:
const void* fTexture; // Pointer to MTLTexture
bool operator==(const GrMtlTextureInfo& that) const {
return fTexture == that.fTexture;
}
};
#endif