PreparedScene

class PreparedScene(val commands: List<RenderCommand>, val width: Int, val height: Int)

A prepared scene ready for rendering. Contains platform-agnostic render commands sorted by depth.

Constructors

Link copied to clipboard
constructor(commands: List<RenderCommand>, width: Int, height: Int)

Properties

Link copied to clipboard

List of render commands, sorted back-to-front for correct depth ordering

Link copied to clipboard
val height: Int

The viewport height used for this preparation

Link copied to clipboard
val width: Int

The viewport width used for this preparation

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun toString(): String