Hard Light Productions Forums
Modding, Mission Design, and Coding => FS2 Open Coding - The Source Code Project (SCP) => Nightly Builds => Topic started by: SirKnightly on August 16, 2020, 01:29:14 am
-
Here is the nightly for 16 August 2020 - Revision 4362af6
Group: Win64
nightly_20200816_4362af6-builds-Win64.zip (http://scp.indiegames.us/builds/nightly/20200816_4362af6/nightly_20200816_4362af6-builds-Win64.zip) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20200816_4362af6/nightly_20200816_4362af6-builds-Win64.zip))
Group: Linux
nightly_20200816_4362af6-builds-Linux.tar.gz (http://scp.indiegames.us/builds/nightly/20200816_4362af6/nightly_20200816_4362af6-builds-Linux.tar.gz) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20200816_4362af6/nightly_20200816_4362af6-builds-Linux.tar.gz))
Group: Win32
nightly_20200816_4362af6-builds-Win32.zip (http://scp.indiegames.us/builds/nightly/20200816_4362af6/nightly_20200816_4362af6-builds-Win32.zip) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20200816_4362af6/nightly_20200816_4362af6-builds-Win32.zip))
Group: MacOSX
nightly_20200816_4362af6-builds-MacOSX.tar.gz (http://scp.indiegames.us/builds/nightly/20200816_4362af6/nightly_20200816_4362af6-builds-MacOSX.tar.gz) (Mirror (https://porphyrion.feralhosting.com/datacorder/builds/nightly/20200816_4362af6/nightly_20200816_4362af6-builds-MacOSX.tar.gz))
------------------------------------------------------------------------
commit 5779117
Author: Tyler Blount
Commit: GitHub
Revert "Update DDS Utilities to DX10 Standard"
code/bmpman/bm_internal.h | 32 +-
code/bmpman/bmpman.cpp | 44 +-
code/bmpman/bmpman.h | 14 +-
code/ddsutils/ddsutils.cpp | 117 ++--
code/ddsutils/ddsutils.h | 246 ++------
code/graphics/2d.cpp | 18 -
code/graphics/2d.h | 1 -
code/graphics/opengl/gropengl.cpp | 2 -
code/graphics/opengl/gropengltexture.cpp | 20 +-
code/mod_table/mod_table.cpp | 19 -
code/mod_table/mod_table.h | 2 -
lib/opengl/gl/extensions.txt | 1 -
lib/opengl/gl/glad/include/glad/glad.h | 123 ++--
lib/opengl/gl/glad/src/glad.c | 794 ++++++++++++-------------
lib/opengl/gl/glad_wgl/include/glad/glad_wgl.h | 5 +-
lib/opengl/gl/glad_wgl/src/glad_wgl.c | 27 +-
16 files changed, 635 insertions(+), 830 deletions(-)
------------------------------------------------------------------------
commit 376e67b
Author: Tyler Blount
Commit: Tyler Blount
Fix CI errors
code/graphics/2d.cpp | 4 ++--
code/mod_table/mod_table.cpp | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
------------------------------------------------------------------------
commit 1f4ff04
Author: Goober5000
Commit: Goober5000
handle SEXP_NAN_FOREVER
code/parse/sexp.cpp | 245 ++++++++++++++++++++++------------------------------
1 file changed, 101 insertions(+), 144 deletions(-)
------------------------------------------------------------------------
commit e4cd567
Author: Goober5000
Commit: Goober5000
handle SEXP_KNOWN_*
code/parse/sexp.cpp | 74 ++++++++++++++++++++++++++---------------------------
1 file changed, 36 insertions(+), 38 deletions(-)
------------------------------------------------------------------------
commit ccb6bdc
Author: Tyler Blount
Commit: Tyler Blount
Make capability system outputs user friendly
code/graphics/2d.cpp | 16 +++++++++++++---
code/mod_table/mod_table.cpp | 8 ++++----
code/mod_table/mod_table.h | 3 ++-
3 files changed, 19 insertions(+), 8 deletions(-)
------------------------------------------------------------------------
commit d35199e
Author: Tyler Blount
Commit: Tyler Blount
Add system for checking mod required rendering features
code/bmpman/bm_internal.h | 12 ------------
code/graphics/2d.cpp | 8 ++++++++
code/graphics/2d.h | 1 +
code/graphics/opengl/gropengl.cpp | 2 ++
code/mod_table/mod_table.cpp | 19 +++++++++++++++++++
code/mod_table/mod_table.h | 1 +
6 files changed, 31 insertions(+), 12 deletions(-)
------------------------------------------------------------------------
commit 4568172
Author: asarium
Commit: asarium
Make the OpenGL backend an optional component
.github/workflows/pr-workflow.yaml | 13 +-
CMakeLists.txt | 4 +
code/CMakeLists.txt | 7 +-
code/cmdline/cmdline.cpp | 4 +-
code/cmdline/cmdline.h | 1 +
code/globalincs/scp_defines.h | 2 +
code/graphics/2d.cpp | 28 ++-
code/graphics/2d.h | 3 +-
code/graphics/grinternal.cpp | 10 +
code/graphics/grinternal.h | 11 +
code/graphics/opengl/gropengldraw.cpp | 1 -
code/graphics/opengl/gropenglpostprocessing.cpp | 283 +++++-------------------
code/graphics/opengl/gropenglpostprocessing.h | 1 -
code/graphics/opengl/gropengltnl.cpp | 2 -
code/graphics/opengl/gropengltnl.h | 1 -
code/graphics/post_processing.cpp | 171 ++++++++++++++
code/graphics/post_processing.h | 67 ++++++
code/scripting/api/libs/graphics.cpp | 5 +-
code/source_groups.cmake | 79 +++----
fred2/sexp_tree.cpp | 4 +-
freespace2/freespace.cpp | 6 +-
lib/CMakeLists.txt | 4 +-
qtfred/src/ui/widgets/sexp_tree.cpp | 4 +-
23 files changed, 422 insertions(+), 289 deletions(-)
------------------------------------------------------------------------
commit dc0e571
Author: asarium
Commit: asarium
Fix memory leak in scripting documentation
code/scripting/doc_json.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
------------------------------------------------------------------------
commit 613913f
Author: Tyler Blount
Commit: Tyler Blount
Fix clang-tidy errors
code/bmpman/bmpman.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
------------------------------------------------------------------------
commit 94f3e1e
Author: Tyler Blount
Commit: Tyler Blount
BC7 now loads correctly
code/bmpman/bm_internal.h | 20 ++++----
code/bmpman/bmpman.cpp | 44 ++++++++++------
code/bmpman/bmpman.h | 14 +++---
code/ddsutils/ddsutils.cpp | 71 ++++++++++++++++++--------
code/ddsutils/ddsutils.h | 86 ++++++++++++++++++++------------
code/graphics/opengl/gropengltexture.cpp | 20 ++++++--
6 files changed, 169 insertions(+), 86 deletions(-)
------------------------------------------------------------------------
commit 2ba7e33
Author: Tyler Blount
Commit: Tyler Blount
Update GLAD and remove old headers
code/ddsutils/ddsutils.cpp | 52 +-
code/ddsutils/ddsutils.h | 71 +--
lib/opengl/gl/extensions.txt | 1 +
lib/opengl/gl/glad/include/glad/glad.h | 123 ++--
lib/opengl/gl/glad/src/glad.c | 794 ++++++++++++-------------
lib/opengl/gl/glad_wgl/include/glad/glad_wgl.h | 5 +-
lib/opengl/gl/glad_wgl/src/glad_wgl.c | 27 +-
7 files changed, 493 insertions(+), 580 deletions(-)
------------------------------------------------------------------------
commit 2ddfa00
Author: Tyler Blount
Commit: Tyler Blount
Add DX11 DDS Header information
code/ddsutils/ddsutils.h | 169 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 169 insertions(+)