Lines Matching full:colorspace
523 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
529 info_ptr->colorspace.end_points_xy.whitex, "cHRM white X");
532 info_ptr->colorspace.end_points_xy.whitey, "cHRM white Y");
534 *red_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redx,
537 *red_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.redy,
541 info_ptr->colorspace.end_points_xy.greenx, "cHRM green X");
544 info_ptr->colorspace.end_points_xy.greeny, "cHRM green Y");
546 *blue_x = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluex,
549 *blue_y = png_float(png_ptr, info_ptr->colorspace.end_points_xy.bluey,
564 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
569 *red_X = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_X,
572 *red_Y = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_Y,
575 *red_Z = png_float(png_ptr, info_ptr->colorspace.end_points_XYZ.red_Z,
579 info_ptr->colorspace.end_points_XYZ.green_X, "cHRM green X");
582 info_ptr->colorspace.end_points_XYZ.green_Y, "cHRM green Y");
585 info_ptr->colorspace.end_points_XYZ.green_Z, "cHRM green Z");
588 info_ptr->colorspace.end_points_XYZ.blue_X, "cHRM blue X");
591 info_ptr->colorspace.end_points_XYZ.blue_Y, "cHRM blue Y");
594 info_ptr->colorspace.end_points_XYZ.blue_Z, "cHRM blue Z");
612 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
617 *int_red_X = info_ptr->colorspace.end_points_XYZ.red_X;
619 *int_red_Y = info_ptr->colorspace.end_points_XYZ.red_Y;
621 *int_red_Z = info_ptr->colorspace.end_points_XYZ.red_Z;
623 *int_green_X = info_ptr->colorspace.end_points_XYZ.green_X;
625 *int_green_Y = info_ptr->colorspace.end_points_XYZ.green_Y;
627 *int_green_Z = info_ptr->colorspace.end_points_XYZ.green_Z;
629 *int_blue_X = info_ptr->colorspace.end_points_XYZ.blue_X;
631 *int_blue_Y = info_ptr->colorspace.end_points_XYZ.blue_Y;
633 *int_blue_Z = info_ptr->colorspace.end_points_XYZ.blue_Z;
649 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_ENDPOINTS) != 0)
652 *white_x = info_ptr->colorspace.end_points_xy.whitex;
654 *white_y = info_ptr->colorspace.end_points_xy.whitey;
656 *red_x = info_ptr->colorspace.end_points_xy.redx;
658 *red_y = info_ptr->colorspace.end_points_xy.redy;
660 *green_x = info_ptr->colorspace.end_points_xy.greenx;
662 *green_y = info_ptr->colorspace.end_points_xy.greeny;
664 *blue_x = info_ptr->colorspace.end_points_xy.bluex;
666 *blue_y = info_ptr->colorspace.end_points_xy.bluey;
684 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_GAMMA) != 0 &&
687 *file_gamma = info_ptr->colorspace.gamma;
703 (info_ptr->colorspace.flags & PNG_COLORSPACE_HAVE_GAMMA) != 0 &&
706 *file_gamma = png_float(png_ptr, info_ptr->colorspace.gamma,
726 *file_srgb_intent = info_ptr->colorspace.rendering_intent;