-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.4.0 (The curly conglomerate)
- Loading branch information
Ilu
committed
Jan 22, 2021
1 parent
36ccd32
commit 8704589
Showing
6,856 changed files
with
1,744,743 additions
and
148,735 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
MIT License | ||
Copyright (c) 2019-2020 Andre Seidelt <[email protected]> | ||
Copyright (c) 2019-2021 Andre Seidelt <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
MIT License | ||
Copyright (c) 2019-2020 Andre Seidelt <[email protected]> | ||
Copyright (c) 2019-2021 Andre Seidelt <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
MIT License | ||
Copyright (c) 2019-2020 Andre Seidelt <[email protected]> | ||
Copyright (c) 2019-2021 Andre Seidelt <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
MIT License | ||
Copyright (c) 2019-2020 Andre Seidelt <[email protected]> | ||
Copyright (c) 2019-2021 Andre Seidelt <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
MIT License | ||
Copyright (c) 2019-2020 Andre Seidelt <[email protected]> | ||
Copyright (c) 2019-2021 Andre Seidelt <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
@@ -212,31 +212,31 @@ static void new_Texinfo(js_State *J) { | |
|
||
// add properties | ||
js_pushstring(J, fname); | ||
js_defproperty(J, -2, "filename", JS_READONLY | JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "filename", JS_READONLY | JS_DONTCONF); | ||
|
||
js_pushnumber(J, ti->info.largeLodLog2); | ||
js_defproperty(J, -2, "largeLod", JS_READONLY | JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "largeLod", JS_READONLY | JS_DONTCONF); | ||
|
||
js_pushnumber(J, ti->info.smallLodLog2); | ||
js_defproperty(J, -2, "smallLod", JS_READONLY | JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "smallLod", JS_READONLY | JS_DONTCONF); | ||
|
||
js_pushnumber(J, ti->info.aspectRatioLog2); | ||
js_defproperty(J, -2, "aspectRatio", JS_READONLY | JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "aspectRatio", JS_READONLY | JS_DONTCONF); | ||
|
||
js_pushnumber(J, ti->info.format); | ||
js_defproperty(J, -2, "format", JS_READONLY | JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "format", JS_READONLY | JS_DONTCONF); | ||
|
||
js_pushnumber(J, ti->tableType); | ||
js_defproperty(J, -2, "tableType", JS_READONLY | JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "tableType", JS_READONLY | JS_DONTCONF); | ||
|
||
js_pushnumber(J, ti->textureSize); | ||
js_defproperty(J, -2, "textureSize", JS_READONLY | JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "textureSize", JS_READONLY | JS_DONTCONF); | ||
|
||
js_pushnumber(J, ti->startAddress); | ||
js_defproperty(J, -2, "address", JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "address", JS_DONTCONF); | ||
|
||
js_pushnumber(J, ti->tmu); | ||
js_defproperty(J, -2, "tmu", JS_DONTENUM | JS_DONTCONF); | ||
js_defproperty(J, -2, "tmu", JS_DONTCONF); | ||
} | ||
|
||
/** | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
MIT License | ||
Copyright (c) 2019-2020 Andre Seidelt <[email protected]> | ||
Copyright (c) 2019-2021 Andre Seidelt <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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.