stbi_set_flip_vertically_on_load function

  1. @Native<Void Function(Int)>(ffi.Int)>()
void stbi_set_flip_vertically_on_load(
  1. int flag_true_if_should_flip
)

flip the image vertically, so the first pixel in the output array is the bottom left

Implementation

@ffi.Native<ffi.Void Function(ffi.Int)>()
external void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip);