The OpenD Programming Language

stbi__context

////////////////////////////////////////////

nothrow @nogc
struct stbi__context {
stbi__uint32 img_x;
stbi__uint32 img_y;
int img_n;
int img_out_n;
stbi_io_callbacks io;
void* io_user_data;
int read_from_callbacks;
int buflen;
stbi_uc[128] buffer_start;
int callback_already_read;
stbi_uc* img_buffer;
stbi_uc* img_buffer_end;
stbi_uc* img_buffer_original;
stbi_uc* img_buffer_original_end;
float ppmX;
float ppmY;
float pixelAspectRatio;
}

Meta