Added 2 wrapped function to libpng12, and 1 to libpng16 (for #560)

This commit is contained in:
ptitSeb 2022-01-25 22:48:55 +01:00
parent 12cc43bd7c
commit 4510b4997a
2 changed files with 3 additions and 0 deletions

View File

@ -73,6 +73,7 @@ GO(png_set_pHYs, vFppuui)
GO(png_set_PLTE, vFpppi)
GOM(png_set_progressive_read_fn, vFEppppp)
GO(png_set_sBIT, vFppp)
GO(png_set_shift, vFpp)
GO(png_set_sig_bytes, vFpi)
GO(png_set_sRGB, vFppi)
GO(png_set_strip_16, vFp)
@ -93,3 +94,4 @@ GO(png_write_image, vFpp)
GO(png_write_info, vFpp)
GO(png_write_png, vFppip)
GO(png_write_row, vFpp)
GO(png_write_rows, vFppu)

View File

@ -99,3 +99,4 @@ GO(png_progressive_combine_row, vFppp)
GO(png_get_progressive_ptr, pFp)
GO(png_get_interlace_type, CFpp)
GOM(png_set_progressive_read_fn, vFEppppp)
GO(png_set_shift, vFpp)