Home | History | Annotate | Download | only in libpng-1.2.19

Lines Matching refs:png_fixed_point

73    info_ptr->int_x_white = (png_fixed_point)(white_x*100000.+0.5);
74 info_ptr->int_y_white = (png_fixed_point)(white_y*100000.+0.5);
75 info_ptr->int_x_red = (png_fixed_point)( red_x*100000.+0.5);
76 info_ptr->int_y_red = (png_fixed_point)( red_y*100000.+0.5);
77 info_ptr->int_x_green = (png_fixed_point)(green_x*100000.+0.5);
78 info_ptr->int_y_green = (png_fixed_point)(green_y*100000.+0.5);
79 info_ptr->int_x_blue = (png_fixed_point)( blue_x*100000.+0.5);
80 info_ptr->int_y_blue = (png_fixed_point)( blue_y*100000.+0.5);
88 png_fixed_point white_x, png_fixed_point white_y, png_fixed_point red_x,
89 png_fixed_point red_y, png_fixed_point green_x, png_fixed_point green_y,
90 png_fixed_point blue_x, png_fixed_point blue_y)
115 if (white_x > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
116 white_y > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
117 red_x > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
118 red_y > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
119 green_x > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
120 green_y > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
121 blue_x > (png_fixed_point) PNG_UINT_31_MAX/100000L ||
122 blue_y > (png_fixed_point) PNG_UINT_31_MAX/100000L)
180 png_set_gAMA_fixed(png_structp png_ptr, png_infop info_ptr, png_fixed_point
183 png_fixed_point gamma;
189 if (int_gamma > (png_fixed_point) PNG_UINT_31_MAX)
612 png_fixed_point int_file_gamma;
620 png_fixed_point int_white_x, int_white_y, int_red_x, int_red_y, int_green_x,