Searched defs:row_pointers (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_png.c51 png_bytepp row_pointers = NULL; local
116 if ((row_pointers = (png_bytepp) malloc(height * sizeof(png_bytep)))
122 row_pointers[i] = image_data + i * rowbytes;
124 png_read_image(png_ptr, row_pointers);
171 free(row_pointers);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpnginfo.h66 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these
293 png_bytepp row_pointers; /* the image bits */ member in struct:png_info_def
H A Dpngset.c1150 png_set_rows(png_structp png_ptr, png_infop info_ptr, png_bytepp row_pointers) argument
1157 if (info_ptr->row_pointers && (info_ptr->row_pointers != row_pointers))
1160 info_ptr->row_pointers = row_pointers;
1162 if (row_pointers)

Completed in 33 milliseconds