Reputation: 83
When I use cardboard on a device which has a big screen, 5.5 inch. And it's resolution is 2560*1440,dpi=640. The question is that the parallax is too big, so that I can see two non overlapping images through a VR device. So, what should I to to fix it?
Thanks.
Upvotes: 1
Views: 665
Reputation: 1286
It looks like your phone might be reporting an incorrect DPI, which prevents the SDK from drawing the two images at the right place on the screen. According to the numbers you gave, the phone DPI should be around 534, not 640.
What is your phone model? Even better, could you give us the output of the following:
adb shell getprop | grep "model|manufacturer|hardware|product.name|lcd_density"
This way we could add a DPI override in the cardboard SDK for your phone model.
Upvotes: 1