ImageBase<X extends ImageBase<X> > mixin
Backend-agnostic contract for ImageBase structs.
Must be mixed into every concrete platform implementation of a Raylib type to ensure a unified API surface across different backends.
- Superclass constraints
- Mixin applications
Properties
- $state → RaylibTempStructState
-
Per-instance allocation state tracking slot keys, disposal, and identity.
finalinherited
- bytesPerPixel → int
-
no setter
- data ↔ Uint8List
-
getter/setter pair
- dataLength → int
-
no setter
- format ↔ PixelFormat
-
getter/setter pair
- frameCount ↔ int
-
getter/setter pair
- frameSize → int
-
no setter
- hashCode → int
-
The hash code for this object.
no setterinherited
- height ↔ int
-
getter/setter pair
- mipmaps ↔ int
-
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- structName → String
-
The Dart-side type name of this struct
no setterinherited
- width ↔ int
-
getter/setter pair
Methods
-
clone(
) → X -
Returns a deep copy of this instance, preserving RaylibStructBase.originalPointer if present.
inherited
-
copy(
) → X -
Returns a deep copy of this instance without RaylibStructBase.originalPointer.
inherited
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
setD(
X o) → X -
Copies the fields of
ointo this instance and returnsthis.inherited -
signature(
) → String -
Returns a human-readable representation of this struct's current field values.
override
-
structUpdateFrameCount(
int frameCount) → void -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
BASE_bytesPerPixel(
PixelFormat format) → int -
BASE_dataLength(
int frameSize, int frameCount) → int -
BASE_frameSize(
int width, int height, PixelFormat format) → int