Lines Matching refs:img_width
51 static GLuint img_width = 0;
70 glDrawPixels( img_width, img_height, img_format, GL_UNSIGNED_BYTE, image );
79 glReadPixels( 5, 5, img_width, img_height, img_format, GL_UNSIGNED_BYTE, temp_image );
80 glWindowPos2i( 5 + 1 * (10 + img_width), 5 );
81 glDrawPixels( img_width, img_height, img_format, GL_UNSIGNED_BYTE, temp_image );
90 glReadPixels( 5, 5, img_width, img_height, img_format, GL_UNSIGNED_BYTE, temp_image );
91 glWindowPos2i( 5 + 2 * (10 + img_width), 5 );
92 glDrawPixels( img_width, img_height, img_format, GL_UNSIGNED_BYTE, temp_image );
150 image = LoadRGBImage( IMAGE_FILE, (GLint *) & img_width, (GLint *) & img_height,
157 temp_image = malloc( 3 * img_height * img_width );