13b9c95295
Committed: https://skia.googlesource.com/skia/+/6296da736fbf40aae881650c239420f64e576c3f GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1933393002 Review-Url: https://codereview.chromium.org/1933393002
28 lines
676 B
C++
28 lines
676 B
C++
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef Resources_DEFINED
|
|
#define Resources_DEFINED
|
|
|
|
#include "SkRefCnt.h"
|
|
#include "SkString.h"
|
|
|
|
class SkBitmap;
|
|
class SkImage;
|
|
class SkStreamAsset;
|
|
class SkTypeface;
|
|
|
|
SkString GetResourcePath(const char* resource = "");
|
|
void SetResourcePath(const char* );
|
|
|
|
bool GetResourceAsBitmap(const char* resource, SkBitmap* dst);
|
|
sk_sp<SkImage> GetResourceAsImage(const char* resource);
|
|
SkStreamAsset* GetResourceAsStream(const char* resource);
|
|
sk_sp<SkTypeface> MakeResourceAsTypeface(const char* resource);
|
|
|
|
#endif // Resources_DEFINED
|