/* * Copyright 2023 Google LLC * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef skgpu_graphite_YUVABackendTextures_DEFINED #define skgpu_graphite_YUVABackendTextures_DEFINED #include "include/core/SkSpan.h" #include "include/core/SkYUVAInfo.h" #include "include/gpu/graphite/BackendTexture.h" #include <tuple> namespace skgpu::graphite { class Recorder; /** * A description of a set of BackendTextures that hold the planar data described by a SkYUVAInfo. */ class SK_API YUVABackendTextureInfo { … }; /** * A set of BackendTextures that hold the planar data for an image described a SkYUVAInfo. */ class SK_API YUVABackendTextures { … }; } // End of namespace skgpu::graphite #endif // skgpu_graphite_YUVABackendTextures_DEFINED