Home | History | Annotate | Download | only in libpng

Lines Matching refs:png_fixed_point

59    info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5);
60 info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5);
61 info_ptr->int_x_red = (png_fixed_point)( red_x*100000.+0.5);
62 info_ptr->int_y_red = (png_fixed_point)( red_y*100000.+0.5);
63 info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5);
64 info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5);
65 info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000.+0.5);
66 info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000.+0.5);
75 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
76 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
77 png_fixed_point blue_x, png_fixed_point blue_y)
143 png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
146 png_fixed_point png_gamma;
153 if (int_gamma > (png_fixed_point)PNG_UINT_31_MAX)
529 png_fixed_point int_file_gamma;
536 png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y, int_green_x,