Merge branch 'master' into update-objc

This commit is contained in:
Adlai Holler
2015-10-13 21:26:20 -07:00
20 changed files with 530 additions and 117 deletions

View File

@@ -18,6 +18,7 @@
#import "ASImageNode+CGExtras.h"
#import "ASInternalHelpers.h"
#import "ASEqualityHelpers.h"
@interface _ASImageNodeDrawParameters : NSObject
@@ -123,7 +124,7 @@
- (void)setImage:(UIImage *)image
{
ASDN::MutexLocker l(_imageLock);
if (_image != image) {
if (!ASObjectIsEqual(_image, image)) {
_image = image;
ASDN::MutexUnlocker u(_imageLock);