Imported from libpng-1.0.4-pre3.tar

This commit is contained in:
Glenn Randers-Pehrson 1999-09-18 15:49:20 -05:00
parent f8b008cd43
commit 352ca6bee0
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
.TH LIBPNGPF 3 "January 14, 1999" .TH LIBPNGPF 3 "September 18, 1999"
.SH NAME .SH NAME
libpng \- Portable Network Graphics (PNG) Reference Library 1.0.3 - January 14, 1999 libpng \- Portable Network Graphics (PNG) Reference Library 1.0.4 - September 18, 1999
(private functions) (private functions)
.SH SYNOPSIS .SH SYNOPSIS
\fB#include <png.h>\fP \fB#include <png.h>\fP

View File

@ -522,7 +522,7 @@ png_set_gamma(png_structp png_ptr, double scrn_gamma, double file_gamma)
#endif #endif
#if defined(PNG_READ_EXPAND_SUPPORTED) #if defined(PNG_READ_EXPAND_SUPPORTED)
/* Expand paletted images to rgb, expand grayscale images of /* Expand paletted images to RGB, expand grayscale images of
* less than 8-bit depth to 8-bit depth, and expand tRNS chunks * less than 8-bit depth to 8-bit depth, and expand tRNS chunks
* to alpha channels. * to alpha channels.
*/ */
@ -3142,7 +3142,7 @@ png_do_background(png_row_infop row_info, png_bytep row,
#if defined(PNG_READ_GAMMA_SUPPORTED) #if defined(PNG_READ_GAMMA_SUPPORTED)
/* Gamma correct the image, avoiding the alpha channel. Make sure /* Gamma correct the image, avoiding the alpha channel. Make sure
* you do this after you deal with the transparency issue on grayscale * you do this after you deal with the transparency issue on grayscale
* or rgb images. If your bit depth is 8, use gamma_table, if it * or RGB images. If your bit depth is 8, use gamma_table, if it
* is 16, use gamma_16_table and gamma_shift. Build these with * is 16, use gamma_16_table and gamma_shift. Build these with
* build_gamma_table(). * build_gamma_table().
*/ */
@ -3324,7 +3324,7 @@ png_do_gamma(png_row_infop row_info, png_bytep row,
#endif #endif
#if defined(PNG_READ_EXPAND_SUPPORTED) #if defined(PNG_READ_EXPAND_SUPPORTED)
/* Expands a palette row to an rgb or rgba row depending /* Expands a palette row to an RGB or RGBA row depending
* upon whether you supply trans and num_trans. * upon whether you supply trans and num_trans.
*/ */
void void

View File

@ -12,7 +12,7 @@
#include "png.h" #include "png.h"
#if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED) #if defined(PNG_READ_BGR_SUPPORTED) || defined(PNG_WRITE_BGR_SUPPORTED)
/* turn on bgr to rgb mapping */ /* turn on BGR-to-RGB mapping */
void void
png_set_bgr(png_structp png_ptr) png_set_bgr(png_structp png_ptr)
{ {