Google Cardboard VRview exported to C++ for use with Cinder 0.9.
This block is designed to quickly build/test out VR apps with Cinder for iOS. (Android helps are welcome.) The block supports both vertex distortion and fragment distortion. For more information on these 2 different methods, please read: VR DISTORTION CORRECTION USING VERTEX DISPLACEMENT
All code has been wrapped inside cinder::cardboard.
This block need to be used with the MotionManager block at the same time. Though if you only want to test the lens distortion, this block will run on desktop devices as well.
void VRApp:setup(){
mHmd = Hmd::create(CardboardVersion::VERSION_2, true);
mDistorter = mHmd->getVertexDistorter();
//generate shaders using VertexDistorter's helper function
mShader = mDistorter->createDistortionShader(loadAsset("phong.vert"), loadAsset("phong.frag"));
}
In your vertex shader, you need to add this include
#include "VertexDistortion"
And before you output gl_Position, use this function
gl_Position = Distort(position);
to distort your vertex positions.
The benefit of using vertex distortion is it doesn't need an FBO, so you could do rendering by only 1 pass.
void VRApp:drawp(){
mHmd->bindEye(Eye::LEFT);
mDistorter->setDistortionUniforms(mShader); //this will set distortion uniforms
drawScene(); //draw you objects
mHmd->bindEye(Eye::RIGHT);
mDistorter->setDistortionUniforms(mShader);
drawScene();
mHmd->unbind(); //unbind hmd to restore 2D viewport/matrices
}
void VRApp:setup(){
mHmd = Hmd::create(CardboardVersion::VERSION_2, false);
}
When using fragment distortion, you need to draw your scenes firstly into the fbo.
void VRApp:update(){
//bing and draw for each eye
mHmd->bindEye(Eye::LEFT);
drawScene();
mHmd->bindEye(Eye::RIGHT);
drawScene();
//unbind hmd so it unbind the fbo internally
mHmd->unbind();
}
And then you need to draw the output fbo inside the draw function
void VRApp:draw(){
mHmd->render();
}
Vertex and Fragment distortion usually yields different results. See the reading VR DISTORTION CORRECTION USING VERTEX DISPLACEMENT, so this is uninteded that you mix 2 methods at the sametime. Therefore once the Hmd is created, you can not change the distortion method.