Device: Iphone 6s
Problem: Can't set camera preview to render at 60 fps.
Vuforia sample app offers camera preview at 60FPS. It gives it good continuous feeling. I can't make it so my app does reach those FPS.
Native iOS camera app allows you to see this when recording "slow-motion" video.
How can you make it so preview displays at higher frames?
int recommendedFps = Vuforia::Renderer::getInstance().getRecommendedFps();
Managed to change "FPSHINT_FLAGS" so it returns 60FPS, but setting it through
Vuforia::Renderer::getInstance().setTargetFps(recommendedFps);
does not work.
Changing setTargetFps() manually with int variable does seem to work only when 1<int<30. After 30 it does not change anything.
Thanks for help in advance!
@medabit
Thank you very much!
Changing video mode to "MODE_OPTIMIZE_QUALITY" resolved the problem!