chromium/third_party/skia/src/gpu/ganesh/GrTexture.h


/*
 * Copyright 2011 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#ifndef GrTexture_DEFINED
#define GrTexture_DEFINED

#include "include/core/SkRefCnt.h"
#include "include/gpu/ganesh/GrBackendSurface.h"
#include "include/gpu/ganesh/GrTypes.h"
#include "include/gpu/ganesh/SkImageGanesh.h"
#include "include/private/gpu/ganesh/GrTypesPriv.h"
#include "src/gpu/ganesh/GrSurface.h"

#include <cstddef>
#include <string_view>

class GrCaps;
class GrGpu;
struct SkISize;

namespace skgpu {
class ScratchKey;
enum class Mipmapped : bool;
}  // namespace skgpu

class GrTexture : virtual public GrSurface {};

#endif