forked from pnggroup/libpng
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sync with libpng version 1.6.47
- Loading branch information
Showing
30 changed files
with
2,000 additions
and
3,007 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# fixed.dfa | ||
# Build time configuration of libpng | ||
# | ||
# Author: John Bowler | ||
# Copyright: (c) John Bowler, 2025 | ||
# Usage rights: | ||
# To the extent possible under law, the author has waived all copyright and | ||
# related or neighboring rights to this work. This work is published from: | ||
# United States. | ||
# | ||
# Test the standard libpng configuration without floating point (the internal | ||
# fixed point implementations are used instead). | ||
# | ||
option FLOATING_ARITHMETIC off | ||
option FLOATING_POINT off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# fixed-float.dfa | ||
# Build time configuration of libpng | ||
# | ||
# Author: John Bowler | ||
# Copyright: (c) John Bowler, 2025 | ||
# Usage rights: | ||
# To the extent possible under law, the author has waived all copyright and | ||
# related or neighboring rights to this work. This work is published from: | ||
# United States. | ||
# | ||
# Test the standard libpng configuration with the fixed point internal | ||
# implementation in place of the default floating point | ||
# | ||
option FLOATING_ARITHMETIC off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# nolimits.dfa | ||
# Build time configuration of libpng | ||
# | ||
# Author: John Bowler | ||
# Copyright: (c) John Bowler, 2025 | ||
# | ||
# Usage rights: | ||
# To the extent possible under law, the author has waived all copyright and | ||
# related or neighboring rights to this work. This work is published from: | ||
# United States. | ||
# | ||
# Build libpng without any limits and without run-time settable limits. Turning | ||
# USER_LIMITS off reduces libpng code size by allowing compile-time elimination | ||
# of some checking code. | ||
# | ||
option USER_LIMITS off | ||
|
||
@# define PNG_USER_WIDTH_MAX PNG_UINT_31_MAX | ||
@# define PNG_USER_HEIGHT_MAX PNG_UINT_31_MAX | ||
@# define PNG_USER_CHUNK_CACHE_MAX 0 | ||
@# define PNG_USER_CHUNK_MALLOC_MAX 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# nolimits.dfa | ||
# Build time configuration of libpng | ||
# | ||
# Author: John Bowler | ||
# Copyright: (c) John Bowler, 2025 | ||
# | ||
# Usage rights: | ||
# To the extent possible under law, the author has waived all copyright and | ||
# related or neighboring rights to this work. This work is published from: | ||
# United States. | ||
# | ||
# Build libpng without any limits. With these settigs run-time limits are still | ||
# possible. | ||
# | ||
@# define PNG_USER_WIDTH_MAX PNG_UINT_31_MAX | ||
@# define PNG_USER_HEIGHT_MAX PNG_UINT_31_MAX | ||
@# define PNG_USER_CHUNK_CACHE_MAX 0 | ||
@# define PNG_USER_CHUNK_MALLOC_MAX 0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.