3ffa126066
Move resource fonts to resources/fonts, add a destortable font for testing, and clean up how the tests create fonts from resources. R=joshualitt@google.com Review URL: https://codereview.chromium.org/1120823002
25 lines
575 B
C++
25 lines
575 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 "SkString.h"
|
|
|
|
class SkBitmap;
|
|
class SkStreamAsset;
|
|
class SkTypeface;
|
|
|
|
SkString GetResourcePath(const char* resource = "");
|
|
void SetResourcePath(const char* );
|
|
|
|
bool GetResourceAsBitmap(const char* resource, SkBitmap* dst);
|
|
SkStreamAsset* GetResourceAsStream(const char* resource);
|
|
SkTypeface* GetResourceAsTypeface(const char* resource);
|
|
|
|
#endif // Resources_DEFINED
|