• Home
  • Raw
  • Download

Lines Matching defs:png_modifier

2353 typedef struct png_modifier  struct
2355 png_store this; /* I am a png_store */
2356 struct png_modification *modifications; /* Changes to make */
2358 modifier_state state; /* My state */
2383 * png_modifier because the modifier only sets it to 1 (true.) argument
2385 unsigned int repeat :1; /* Repeat this transform test. */
2386 unsigned int test_uses_encoding :1;
2389 png_byte sbitlow;
2394 double maxout8; /* Maximum output value error */
2395 double maxabs8; /* Absolute sample error 0..1 */
2396 double maxcalc8; /* Absolute sample error 0..1 */
2397 double maxpc8; /* Percentage sample error 0..100% */
2398 double maxout16; /* Maximum output value error */
2399 double maxabs16; /* Absolute sample error 0..1 */
2400 double maxcalc16;/* Absolute sample error 0..1 */
2401 double maxcalcG; /* Absolute sample error 0..1 */
2402 double maxpc16; /* Percentage sample error 0..100% */
2411 double limit; /* limit on error values, normally 4E-3 */
2416 double log8; /* Absolute error in 8 bits to log */
2417 double log16; /* Absolute error in 16 bits to log */
2420 double error_gray_2;
2421 double error_gray_4;
2422 double error_gray_8;
2423 double error_gray_16;
2424 double error_color_8;
2425 double error_color_16;
2426 double error_indexed;
2432 int use_update_info;
2435 int interlace_type :9; /* int, but must store '1' */
2438 unsigned int test_standard :1;
2441 unsigned int test_size :1;
2444 unsigned int test_transform :1;
2445 unsigned int test_tRNS :1; /* Includes tRNS images */
2453 unsigned int use_input_precision :1;
2454 unsigned int use_input_precision_sbit :1;
2455 unsigned int use_input_precision_16to8 :1;
2460 unsigned int calculations_use_input_precision :1;
2465 unsigned int assume_16_bit_calculations :1;
2468 unsigned int test_gamma_threshold :1;
2469 unsigned int test_gamma_transform :1; /* main tests */
2470 unsigned int test_gamma_sbit :1;
2471 unsigned int test_gamma_scale16 :1;
2472 unsigned int test_gamma_background :1;
2496 } png_modifier; argument