summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2012-02-09 10:11:52 +0000
committerRobin Watts <robin.watts@artifex.com>2012-02-09 10:11:52 +0000
commit3fff26e653b7c90e884fae449337766d3c2a309a (patch)
tree84a3aca1aea27591c5ddb3459b86c0c2de6eb929 /ios
parentc07d0087384a45db43b6efd2f6808b31d2e60c59 (diff)
downloadmupdf-3fff26e653b7c90e884fae449337766d3c2a309a.tar.xz
Update ios and Android projects with locking changes.
I forgot to update Android and iOS projects with the extra arg to fz_new_context. Fixed here.
Diffstat (limited to 'ios')
-rw-r--r--ios/main.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/main.m b/ios/main.m
index fa85178d..4901a2c5 100644
--- a/ios/main.m
+++ b/ios/main.m
@@ -1386,7 +1386,7 @@ static UIImage *renderTile(struct document *doc, int number, CGSize screenSize,
queue = dispatch_queue_create("com.artifex.mupdf.queue", NULL);
// use at most 128M for resource cache
- ctx = fz_new_context(NULL, 128<<20);
+ ctx = fz_new_context(NULL, NULL, 128<<20);
screenScale = [[UIScreen mainScreen] scale];