您的位置:首页 > 移动开发 > Android开发

Google cardBoard Android API (十六):两个接口中的CardboardView.StereoRenderer

2016-03-21 15:33 507 查看


CardboardView.StereoRenderer

public static interface CardboardView.StereoRenderer

Interface for renderers that delegate all stereoscopic rendering details to the view.

Implementors should simply render a view as they would normally do using the provided transformation parameters. All stereoscopic rendering and distortion correction details are abstracted from the renderer and managed internally by the view.


Public Methods

abstract voidonDrawEye(Eye eye)
abstract voidonFinishFrame(Viewport viewport)
abstract voidonNewFrame(HeadTransform headTransform)
abstract voidonRendererShutdown()
abstract voidonSurfaceChanged(int
width, int height)
abstract voidonSurfaceCreated(EGLConfig
config)


Public Methods


public abstract void onDrawEye (Eye eye)

Requests to draw the contents from the point of view of an eye.

If distortion correction is enabled the GL context will be set to draw into a framebuffer backed by a texture at the time of this call, so if an implementor need to change the framebuffer for some rendering stage then the implementor must reset the framebuffer
to the one obtained via
glGetIntegerv(GL_FRAMEBUFFER_BINDING, ...)
afterwards.

If VR mode is disabled the onDrawEye method will be called only once with parameters to draw a monocular system and distortion correction will not take place. For monocular rendering, the implementor should feel free to ignore the FieldOfView and instead create
a perspective matrix with whatever field of view is desired (ScreenParams.getWidth()/ScreenParams.getHeight() can provide the aspect ratio). See the
setVRModeEnabled
method
for details.


Parameters


eyeThe eye to render, including the transformations to be applied.


public abstract void onFinishFrame (Viewport viewport)

Called before a frame is finished.

By the time of this call, the frame contents have been already drawn and, if enabled, distortion correction has been applied.

This method allows to perform additional overlay rendering over the frame results. For example, it could be used to draw markers that help users to properly center their device screens in their Cardboards.

Any rendering in this step is relative to the full surface, not to any single eye view. A
viewport
object
describing the bounds of the full surface is provided and automatically set in the current GL context.


Parameters


viewportViewport of the full GL surface. Automatically set before this call.


public abstract void onNewFrame (HeadTransform headTransform)

Called when a new frame is about to be drawn.

Allows to differenciate between rendering eye views and different frames. Any per-frame operations not specific to a single view should happen here.


Parameters


headTransformThe head transformation in the new frame.


public abstract void onRendererShutdown ()

Called on the renderer thread when the thread is shutting down.

Allows releasing GL resources and performing shutdown operations in the renderer thread. Called only if there was a previous call to
onSurfaceCreated
.


public abstract void onSurfaceChanged (int width, int height)

Called when there is a change in the surface dimensions.

All values are relative to the size required to render a single eye. If VR mode is enabled this will be the size to render one of the eyes. If VR mode is disabled this will be the size of the full surface.

Viewport, field of view and projection details are automatically updated.

Note that the eye parameters passed to
onDrawEye(Eye)
are
computed under the assumption that the surface dimensions correspond to a fullscreen landscape view. Any other configuration is likely to lead to convergence problems.

Note that for stereo renderers the reported surface size corresponds to a single eye, which has half the width of the full view surface when VR mode is enabled.


Parameters


widthNew width of the surface for a single eye in pixels.
heightNew height of the surface for a single eye in pixels.


public abstract void onSurfaceCreated (EGLConfig config)

Called when the surface is created or recreated.


Parameters


configThe EGL configuration used when creating the surface.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: