CreateRenderPipelineAsyncCallback


fun interface CreateRenderPipelineAsyncCallback


Summary

Public functions

Unit
onCreateRenderPipelineAsync(
    status: Int,
    message: String,
    pipeline: GPURenderPipeline?
)

A callback function invoked upon the completion of asynchronous render pipeline creation.

Public functions

onCreateRenderPipelineAsync

Added in 1.0.0-alpha01
fun onCreateRenderPipelineAsync(
    status: Int,
    message: String,
    pipeline: GPURenderPipeline?
): Unit

A callback function invoked upon the completion of asynchronous render pipeline creation.

Parameters
status: Int

The status of the asynchronous render pipeline creation.

message: String

A human-readable message providing context on the status.

pipeline: GPURenderPipeline?

The created render pipeline object on success.