Page Summary
-
BufferViewportListis an array ofBufferViewportobjects used in VR distortion rendering. -
It's managed by the
GvrApiand provides methods to access, modify, and shut down the list. -
getretrieves a specificBufferViewportfrom the list using its index. -
setupdates an existing or adds a newBufferViewportto the list. -
shutdownreleases resources associated with theBufferViewportList.
An array of BufferViewport objects.
This class is used to inform distortion rendering, and can be created and updated via GvrApi.
Public Methods
| void | |
| void | |
| void |
shutdown()
Shuts down the BufferViewportList instance, freeing associated resources.
|
| int |
size()
Returns the number of
BufferViewport that are contained in the list. |
Inherited Methods
Public Methods
public void get (int index, BufferViewport bufferViewportOut)
Gets a viewport list entry.
Parameters
| index | the index of BufferViewport to retrieve. Must be less than size() |
|---|---|
| bufferViewportOut | the BufferViewport object to populate with viewport data
|
public void set (int index, BufferViewport bufferViewport)
Updates or appends a viewport list entry.
Parameters
| index | the index of BufferViewport to set. Must be less than or equal to
size() |
|---|---|
| bufferViewport | the BufferViewport object to set as the list entry
|
public void shutdown ()
Shuts down the BufferViewportList instance, freeing associated resources.
Note: The caller is responsible for ensuring that this BufferViewportList
isn't used after shutdown.