GLFrontBufferedRenderer
@RequiresApi(value = 29)
public final class GLFrontBufferedRenderer<T extends Object>
Class responsible for supporting a "front buffered" rendering system. This allows for lower latency graphics by leveraging a combination of front buffered and multi buffered content layers. Active content is rendered first into the front buffered layer which is simultaneously being presented to the display. Periodically content is rendered into the multi buffered layer which will have more traditional latency guarantees, however, minimize the impact of visual artifacts due to graphical tearing.
Summary
Nested types |
|---|
public interface GLFrontBufferedRenderer.Callback<T extends Object>Provides callbacks for consumers to draw into the front and multi buffered layers as well as provide opportunities to synchronize |
Public constructors |
|---|
<T extends Object> GLFrontBufferedRenderer( |
Public methods |
|
|---|---|
final void |
cancel()Requests to cancel rendering and hides the front buffered layer. |
final void |
clear()Clears the contents of both the front and multi buffered layers. |
final void |
commit()Requests to render the entire scene to the multi buffered layer and schedules a call to |
final void |
Queue a |
final int |
format of the underlying buffers being rendered into by |
final boolean |
isValid()Determines whether or not the |
final void |
Releases the |
final void |
renderFrontBufferedLayer(@NonNull T param)Render content to the front buffered layer providing optional parameters to be consumed in |
final void |
renderMultiBufferedLayer(@NonNull Collection<@NonNull T> params)Requests to render to the multi buffered layer. |
Public constructors
GLFrontBufferedRenderer
public <T extends Object> GLFrontBufferedRenderer(
@NonNull SurfaceView surfaceView,
@NonNull GLFrontBufferedRenderer.Callback<@NonNull T> callback,
GLRenderer glRenderer,
int bufferFormat
)
| Parameters | |
|---|---|
@NonNull SurfaceView surfaceView |
Target SurfaceView to act as the parent rendering layer for multi buffered content |
@NonNull GLFrontBufferedRenderer.Callback<@NonNull T> callback |
Callbacks used to render into front and multi buffered layers as well as configuring |
GLRenderer glRenderer |
Optional |
int bufferFormat |
format of the underlying buffers being rendered into by See: khronos.org/registry/EGL/extensions/ANDROID/EGL_ANDROID_get_native_client_buffer.txt and https://developer.android.com/reference/android/hardware/HardwareBuffer |
Public methods
cancel
public final void cancel()
Requests to cancel rendering and hides the front buffered layer. Unlike commit, this does not schedule a call to render into the multi buffered layer.
If this GLFrontBufferedRenderer has been released, that is isValid returns false, this call is ignored.
clear
public final void clear()
Clears the contents of both the front and multi buffered layers. This triggers a call to Callback.onMultiBufferedLayerRenderComplete and hides the front buffered layer.
commit
public final void commit()
Requests to render the entire scene to the multi buffered layer and schedules a call to Callback.onDrawMultiBufferedLayer. The parameters provided to Callback.onDrawMultiBufferedLayer will include each argument provided to every renderFrontBufferedLayer call since the last call to commit has been made.
If this GLFrontBufferedRenderer has been released, that is isValid returns false, this call is ignored.
execute
public final void execute(@NonNull Runnable runnable)
Queue a Runnable to be executed on the GL rendering thread. Note it is important this Runnable does not block otherwise it can stall the GL thread.
getBufferFormat
public final int getBufferFormat()
format of the underlying buffers being rendered into by GLFrontBufferedRenderer. The set of valid formats is implementation-specific and may depend on additional EGL extensions. The particular valid combinations for a given Android version and implementation should be documented by that version. HardwareBuffer.RGBA_8888 and HardwareBuffer.RGBX_8888 are guaranteed to be supported. However, consumers are recommended to query the desired HardwareBuffer configuration using HardwareBuffer.isSupported. The default is HardwareBuffer.RGBA_8888.
See: khronos.org/registry/EGL/extensions/ANDROID/EGL_ANDROID_get_native_client_buffer.txt and https://developer.android.com/reference/android/hardware/HardwareBuffer
isValid
public final boolean isValid()
Determines whether or not the GLFrontBufferedRenderer is in a valid state. That is the release method has not been called. If this returns false, then subsequent calls to renderFrontBufferedLayer, commit, and release are ignored
| Returns | |
|---|---|
boolean |
|
release
public final void release(boolean cancelPending, Function0<Unit> onReleaseComplete)
Releases the GLFrontBufferedRenderer and provides an optional callback that is invoked when the GLFrontBufferedRenderer is fully torn down. If the cancelPending flag is true, all pending requests to render into the front or multi buffered layers will be processed before the GLFrontBufferedRenderer is torn down. Otherwise all in process requests are ignored. If the GLFrontBufferedRenderer is already released, that is isValid returns false, this method does nothing.
| Parameters | |
|---|---|
boolean cancelPending |
Flag indicating that requests to render should be processed before the |
Function0<Unit> onReleaseComplete |
Optional callback invoked when the |
renderFrontBufferedLayer
public final void renderFrontBufferedLayer(@NonNull T param)
Render content to the front buffered layer providing optional parameters to be consumed in Callback.onDrawFrontBufferedLayer. Additionally the parameter provided here will also be consumed in Callback.onDrawMultiBufferedLayer when the corresponding commit method is invoked, which will include all params in each call made to this method up to the corresponding commit call.
If this GLFrontBufferedRenderer has been released, that is isValid returns false, this call is ignored.
| Parameters | |
|---|---|
@NonNull T param |
Optional parameter to be consumed when rendering content into the commit layer |
renderMultiBufferedLayer
public final void renderMultiBufferedLayer(@NonNull Collection<@NonNull T> params)
Requests to render to the multi buffered layer. This schedules a call to Callback.onDrawMultiBufferedLayer with the parameters provided. If the front buffered layer is visible, this will hide this layer after rendering to the multi buffered layer is complete. This is equivalent to calling GLFrontBufferedRenderer.renderFrontBufferedLayer for each parameter provided in the collection followed by a single call to GLFrontBufferedRenderer.commit. This is useful for re-rendering the multi buffered scene when the corresponding Activity is being resumed from the background in which the contents should be re-drawn. Additionally this allows for applications to decide to dynamically render to either front or multi buffered layers.
If this GLFrontBufferedRenderer has been released, that is isValid returns 'false', this call is ignored.
| Parameters | |
|---|---|
@NonNull Collection<@NonNull T> params |
Parameters that to be consumed when rendering to the multi buffered layer. These parameters will be provided in the corresponding call to |