summaryrefslogtreecommitdiffstats
path: root/libs/minikin/Layout.cpp
diff options
context:
space:
mode:
authorRaph Levien <raph@google.com>2014-05-05 16:11:17 -0700
committerRaph Levien <raph@google.com>2014-05-12 10:28:15 -0700
commitb80c1f19c58b927820a8a24bf2218e5645724608 (patch)
treee00dec46530cfec05ea82512605ff2bf3ff32f28 /libs/minikin/Layout.cpp
parentecc2d34ac23a497988f21e5f415b53c007b9d8c5 (diff)
downloadandroid_frameworks_minikin-b80c1f19c58b927820a8a24bf2218e5645724608.tar.gz
android_frameworks_minikin-b80c1f19c58b927820a8a24bf2218e5645724608.tar.bz2
android_frameworks_minikin-b80c1f19c58b927820a8a24bf2218e5645724608.zip
Better refcounting and locking
All major externally accessible objects (especially FontFamily and FontCollection) are now reference counted. In addition, there is a global lock intended to make operations thread-safe. WIP notice: in this version of the patch, not all external API entry points are protected by the lock. That should be fixed. Change-Id: I14106196e99eb101e8bf1bcb4b81359759d2086c
Diffstat (limited to 'libs/minikin/Layout.cpp')
-rw-r--r--libs/minikin/Layout.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/libs/minikin/Layout.cpp b/libs/minikin/Layout.cpp
index ffaa451..20e2d9e 100644
--- a/libs/minikin/Layout.cpp
+++ b/libs/minikin/Layout.cpp
@@ -25,8 +25,7 @@
#include <hb-icu.h>
-#include <utils/Mutex.h>
-
+#include "MinikinInternal.h"
#include <minikin/MinikinFontFreeType.h>
#include <minikin/Layout.h>
@@ -38,8 +37,6 @@ namespace android {
// TODO: globals are not cool, move to a factory-ish object
hb_buffer_t* buffer = 0;
-Mutex gLock;
-
Bitmap::Bitmap(int width, int height) : width(width), height(height) {
buf = new uint8_t[width * height]();
}
@@ -280,7 +277,7 @@ static hb_script_t getScriptRun(const uint16_t *chars, size_t len, ssize_t *iter
// TODO: API should probably take context
void Layout::doLayout(const uint16_t* buf, size_t nchars) {
- AutoMutex _l(gLock);
+ AutoMutex _l(gMinikinLock);
if (buffer == 0) {
buffer = hb_buffer_create();
}