DrawBillboardPro function

  1. @Deprecated("Broken by a dart:ffi bug: the trailing Color argument gets corrupted " "(or crashes) once the preceding float-only args exceed the CPU's 8 " "float registers. Use DrawBillboard, or wait for the fix. " "See dart-lang/sdk#63976.")
void DrawBillboardPro(
  1. Camera3DC camera,
  2. TextureC texture,
  3. RectangleC source,
  4. Vector3C position,
  5. Vector3C up,
  6. Vector2C size,
  7. Vector2C origin,
  8. double rotation,
  9. ColorC tint,
)

Implementation

@Deprecated(
  "Broken by a dart:ffi bug: the trailing Color argument gets corrupted "
  "(or crashes) once the preceding float-only args exceed the CPU's 8 "
  "float registers. Use DrawBillboard, or wait for the fix. "
  "See dart-lang/sdk#63976."
)
void DrawBillboardPro(
  Camera3DC camera,
  TextureC texture,
  RectangleC source,
  Vector3C position,
  Vector3C up,
  Vector2C size,
  Vector2C origin,
  double rotation,
  ColorC tint,
) => _module.DrawBillboardPro(camera, texture, source, position, up, size, origin, rotation, tint);