blob: c7ee07f4ff67df4999d8863bfc25830a2863082c [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@android.com8a1c16f2008-12-17 15:59:43 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#ifndef SkGraphics_DEFINED
11#define SkGraphics_DEFINED
12
13#include "SkTypes.h"
14
reed@google.comeb9a9bf2012-04-23 13:43:30 +000015class SK_API SkGraphics {
reed@android.com8a1c16f2008-12-17 15:59:43 +000016public:
caryclark@google.comd26147a2011-12-15 14:16:43 +000017 /**
18 * Call this at process initialization time if your environment does not
19 * permit static global initializers that execute code. Note that
20 * Init() is not thread-safe.
21 */
reed@android.com5e5adfd2009-03-07 03:39:23 +000022 static void Init();
caryclark@google.comd26147a2011-12-15 14:16:43 +000023
caryclark@google.comf86ab842011-12-16 17:11:17 +000024 /**
25 * Call this to release any memory held privately, such as the font cache.
26 */
reed@android.com8a1c16f2008-12-17 15:59:43 +000027 static void Term();
28
reed@google.com77407ca2011-11-08 13:48:32 +000029 /**
30 * Return the version numbers for the library. If the parameter is not
31 * null, it is set to the version number.
reed@android.com9aa8b322010-04-13 13:22:54 +000032 */
33 static void GetVersion(int32_t* major, int32_t* minor, int32_t* patch);
34
reed@google.com77407ca2011-11-08 13:48:32 +000035 /**
36 * Return the max number of bytes that should be used by the font cache.
37 * If the cache needs to allocate more, it will purge previous entries.
38 * This max can be changed by calling SetFontCacheLimit().
39 */
40 static size_t GetFontCacheLimit();
41
42 /**
43 * Specify the max number of bytes that should be used by the font cache.
44 * If the cache needs to allocate more, it will purge previous entries.
45 *
46 * This function returns the previous setting, as if GetFontCacheLimit()
47 * had be called before the new limit was set.
48 */
49 static size_t SetFontCacheLimit(size_t bytes);
50
reed@google.com073c9072011-11-08 20:03:48 +000051 /**
reed@google.com79a1c34ee2012-07-30 13:08:01 +000052 * Return the number of bytes currently used by the font cache.
53 */
54 static size_t GetFontCacheUsed();
55
56 /**
reed@google.com073c9072011-11-08 20:03:48 +000057 * For debugging purposes, this will attempt to purge the font cache. It
58 * does not change the limit, but will cause subsequent font measures and
59 * draws to be recreated, since they will no longer be in the cache.
60 */
61 static void PurgeFontCache();
caryclark@google.com54c782c2011-11-21 20:42:14 +000062
63 /**
64 * Applications with command line options may pass optional state, such
65 * as cache sizes, here, for instance:
66 * font-cache-limit=12345678
67 *
68 * The flags format is name=value[;name=value...] with no spaces.
69 * This format is subject to change.
70 */
71 static void SetFlags(const char* flags);
caryclark@google.comd26147a2011-12-15 14:16:43 +000072
reed@google.com6172d672012-05-17 13:38:03 +000073 /**
74 * Return the max number of bytes that should be used by the thread-local
75 * font cache.
76 * If the cache needs to allocate more, it will purge previous entries.
77 * This max can be changed by calling SetFontCacheLimit().
78 *
79 * If this thread has never called SetTLSFontCacheLimit, or has called it
80 * with 0, then this thread is using the shared font cache. In that case,
81 * this function will always return 0, and the caller may want to call
82 * GetFontCacheLimit.
83 */
84 static size_t GetTLSFontCacheLimit();
85
86 /**
87 * Specify the max number of bytes that should be used by the thread-local
reed@google.com803c67d2012-05-17 13:50:36 +000088 * font cache. If this value is 0, then this thread will use the shared
89 * global font cache.
reed@google.com6172d672012-05-17 13:38:03 +000090 */
reed@google.com803c67d2012-05-17 13:50:36 +000091 static void SetTLSFontCacheLimit(size_t bytes);
reed@google.com6172d672012-05-17 13:38:03 +000092
reed@android.com8a1c16f2008-12-17 15:59:43 +000093private:
94 /** This is automatically called by SkGraphics::Init(), and must be
95 implemented by the host OS. This allows the host OS to register a callback
96 with the C++ runtime to call SkGraphics::FreeCaches()
97 */
98 static void InstallNewHandler();
99};
100
reed@android.com8015dd82009-06-21 00:49:18 +0000101class SkAutoGraphics {
102public:
103 SkAutoGraphics() {
104 SkGraphics::Init();
105 }
106 ~SkAutoGraphics() {
107 SkGraphics::Term();
108 }
109};
110
reed@android.com8a1c16f2008-12-17 15:59:43 +0000111#endif
112