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/DrawBillboardRec, or wait for the fix. " "See dart-lang/sdk#63976.")
void DrawBillboardPro(
  1. Camera3DD camera,
  2. TextureD texture,
  3. RectangleD source,
  4. Vector3D position,
  5. Vector3D up,
  6. Vector2D size,
  7. Vector2D origin,
  8. num rotation,
  9. ColorD 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/DrawBillboardRec, or wait for the fix. "
  "See dart-lang/sdk#63976."
)
void DrawBillboardPro(
  Camera3DD camera,
  TextureD texture,
  RectangleD source,
  Vector3D position,
  Vector3D up,
  Vector2D size,
  Vector2D origin,
  num rotation,
  ColorD tint,
) => _module.DrawBillboardPro(camera, texture, source, position, up, size, origin, rotation, tint);