blob: 4afeb4f0c69d40056eb8d08d586760ef249f6999 [file]
/*
* Copyright 2026 Google LLC
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef Tiger_DEFINED
#define Tiger_DEFINED
#include <cstdint>
#include <vector>
class SkPath;
namespace Tiger {
static constexpr uint16_t kTigerWidth = 500;
static constexpr uint16_t kTigerHeight = 600;
static constexpr float kTigerWidthF = static_cast<float>(kTigerWidth);
static constexpr float kTigerHeightF = static_cast<float>(kTigerHeight);
std::vector<SkPath> GetTigerPaths();
}
#endif // Tiger_DEFINED