LoadImageRaw method

ImageC LoadImageRaw(
  1. Pointer<Char> fileName,
  2. int width,
  3. int height,
  4. int format,
  5. int headerSize,
)

Implementation

ImageC LoadImageRaw(
  Pointer<Char> fileName,
  int width,
  int height,
  int format,
  int headerSize,
) {
  return _LoadImageRaw(fileName, width, height, format, headerSize);
}