Delegate StbiReadProc
Pointer to STBI stream read function.
public delegate int StbiReadProc(void* userdata, byte* buffer, int count)
Parameters
userdata
void*User provided userdata pointer.
buffer
byte*C array to read into.
count
intSize of the C array in bytes.
Returns
- int
The number of bytes read from the stream.