Hello,
I load data with function:
gssize g_input_stream_read (GInputStream *stream,
void *buffer, gsize count,
GCancellable *cancellable,
GError **error);
What is ma value of buffer parameter. How can I know what should be equal to buffer?
I make:
#define LOAD_BUFFER_SIZE 65536
But when i try to load image, only visible part of the image.
Thank you.