blob: 9509d2d802066d5ec64edcf233073257004acced [file]
/*
* Copyright 2024 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef sktext_gpu_TextBlobPriv_DEFINED
#define sktext_gpu_TextBlobPriv_DEFINED
namespace sktext::gpu {
class AtlasSubRun;
class TextBlob;
class SubRunContainer;
class TextBlobTools final {
public:
static const AtlasSubRun* FirstSubRun(const TextBlob*);
static const AtlasSubRun* FirstSubRun(const SubRunContainer*);
private:
TextBlobTools();
};
} // namespace sktext::gpu
#endif