A_Get_Graphic method

int A_Get_Graphic(
  1. int x,
  2. int y,
  3. int mem_mode,
  4. int format,
  5. String filename,
)

Implementation

int A_Get_Graphic(
  int x,
  int y,
  int mem_mode,
  int format,
  String filename,
) {
  return _A_Get_Graphic(
    x,
    y,
    mem_mode,
    format,
    filename.toNativeUtf8().cast<ffi.Int8>(),
  );
}