ofxQCAR icon indicating copy to clipboard operation
ofxQCAR copied to clipboard

iPhone 6+ scale issue

Open vheun opened this issue 9 years ago • 0 comments

The retina display from the iPhone 6+ has a scale of 3.

ofxQCAR.mm line 216 needs to be changed to:

  ARViewBoundsSize.width *= [UIScreen mainScreen].scale;
    ARViewBoundsSize.height *= [UIScreen mainScreen].scale;

Since the scale for non retina displays is 1 the if can be removed.

vheun avatar Dec 11 '15 22:12 vheun