Author Topic: Nightly (FreeBSD): 12 May 2015 - Revision 5dfbc6d  (Read 673 times)

0 Members and 1 Guest are viewing this topic.

Offline SirKnightly

  • George or Keira?
  • 211
Nightly (FreeBSD): 12 May 2015 - Revision 5dfbc6d
Here is the nightly for FreeBSD on 12 May 2015 - Revision 5dfbc6d

Open non-feature issues in Mantis: 123

Group: Standard
fso_Standard_20150512_5dfbc6d.tar.bz2
MD5Sum

Code: [Select]
------------------------------------------------------------------------
commit 90c8025
Author: SamuelCho <Fri May 8 21:55:28 2015 -0700>
Commit: SamuelCho <Fri May 8 21:55:28 2015 -0700>

    Code cleanup before the big soft shadows and deferred lighting merge into master.
 code/globalincs/pstypes.h     |  8 ----
 code/globalincs/vmallocator.h |  1 -
 code/graphics/2d.cpp          | 59 ------------------------------
 code/graphics/grbatch.cpp     | 85 -------------------------------------------
 code/lab/lab.cpp              |  1 +
 code/model/model.h            |  3 --
 code/model/modelinterp.cpp    | 22 +++++------
 code/model/modelread.cpp      | 33 +----------------
 code/model/modelrender.cpp    |  6 +--
 9 files changed, 16 insertions(+), 202 deletions(-)

------------------------------------------------------------------------
commit 520b894
Author: SamuelCho <Fri May 8 21:21:20 2015 -0700>
Commit: SamuelCho <Fri May 8 21:21:20 2015 -0700>

    Fixed warnings related to graphics code additions.
 code/bmpman/bmpman.cpp                   | 16 ++++++++--------
 code/globalincs/profiling.cpp            |  6 +++---
 code/graphics/2d.cpp                     |  6 +++---
 code/graphics/grbatch.cpp                |  1 -
 code/graphics/gropengldraw.cpp           |  4 +---
 code/graphics/gropenglpostprocessing.cpp |  3 +--
 code/graphics/gropengltnl.cpp            |  4 ++--
 code/graphics/shadows.cpp                |  5 -----
 code/lighting/lighting.cpp               |  8 +++-----
 code/model/modelinterp.cpp               | 19 ++++++++-----------
 code/model/modelread.cpp                 |  1 -
 code/model/modelrender.cpp               |  5 -----
 code/ship/ship.cpp                       |  1 -
 code/weapon/trails.cpp                   |  1 -
 14 files changed, 29 insertions(+), 51 deletions(-)

------------------------------------------------------------------------
commit 6da0d16
Author: Swifty <Sat May 2 17:18:51 2015 -0700>
Commit: Swifty <Sat May 2 17:18:51 2015 -0700>

    Fixed compilation issues.
 code/model/modelread.cpp | 126 +++++++++++++++++++++++++----------------------
 code/ship/ship.cpp       |   2 -
 2 files changed, 67 insertions(+), 61 deletions(-)

------------------------------------------------------------------------
commit c620372
Author: Swifty <Sat May 2 14:35:37 2015 -0700>
Commit: Swifty <Sat May 2 14:35:37 2015 -0700>

    Soft shadows, deferred lighting, and various major graphics optimizations.
 code/Makefile.am                         |    2 +
 code/asteroid/asteroid.cpp               |   29 +-
 code/asteroid/asteroid.h                 |    4 +-
 code/bmpman/bmpman.cpp                   |   87 +
 code/bmpman/bmpman.h                     |   20 +
 code/cmdline/cmdline.cpp                 |   43 +-
 code/cmdline/cmdline.h                   |    4 +
 code/cutscene/mveplayer.cpp              |   14 +-
 code/cutscene/oggplayer.cpp              |   73 +-
 code/debris/debris.cpp                   |   62 +-
 code/debris/debris.h                     |    4 +-
 code/fireball/fireballs.cpp              |   73 +-
 code/fireball/fireballs.h                |    6 +-
 code/fireball/warpineffect.cpp           |  178 +-
 code/fred2/fredrender.cpp                |   36 +-
 code/freespace2/freespace.cpp            |   49 +-
 code/globalincs/def_files.cpp            |  958 +++++++---
 code/globalincs/profiling.cpp            |  153 +-
 code/globalincs/pstypes.h                |   78 +-
 code/globalincs/systemvars.cpp           |    1 +
 code/globalincs/systemvars.h             |   58 +
 code/globalincs/vmallocator.h            |    1 +
 code/graphics/2d.cpp                     |  316 +++-
 code/graphics/2d.h                       |  250 ++-
 code/graphics/grbatch.cpp                |  717 ++++++--
 code/graphics/grbatch.h                  |   35 +-
 code/graphics/grinternal.h               |    3 +-
 code/graphics/gropengl.cpp               |   46 +-
 code/graphics/gropenglbmpman.cpp         |    3 +-
 code/graphics/gropengldraw.cpp           | 1066 ++++++++---
 code/graphics/gropengldraw.h             |   75 +-
 code/graphics/gropenglextension.cpp      |   63 +-
 code/graphics/gropenglextension.h        |   90 +-
 code/graphics/gropengllight.cpp          |   24 +-
 code/graphics/gropengllight.h            |    2 +
 code/graphics/gropenglpostprocessing.cpp |  620 +++----
 code/graphics/gropenglpostprocessing.h   |    2 +
 code/graphics/gropenglshader.cpp         |  620 ++++---
 code/graphics/gropenglshader.h           |   90 +-
 code/graphics/gropenglstate.cpp          |  585 +++++-
 code/graphics/gropenglstate.h            |  107 +-
 code/graphics/gropengltexture.cpp        |   79 +-
 code/graphics/gropengltexture.h          |    4 +-
 code/graphics/gropengltnl.cpp            | 1226 ++++++++-----
 code/graphics/gropengltnl.h              |   33 +-
 code/graphics/grstub.cpp                 |   91 +-
 code/graphics/shadows.cpp                |  492 +++++
 code/graphics/shadows.h                  |   39 +
 code/graphics/tmapper.h                  |    9 +-
 code/hud/hudshield.cpp                   |    9 +-
 code/hud/hudtarget.cpp                   |   52 +-
 code/hud/hudtargetbox.cpp                |  127 +-
 code/io/timer.cpp                        |   55 +-
 code/io/timer.h                          |    1 +
 code/jumpnode/jumpnode.cpp               |   84 +-
 code/jumpnode/jumpnode.h                 |    6 +-
 code/lab/lab.cpp                         |  195 +-
 code/lighting/lighting.cpp               |  260 +++
 code/lighting/lighting.h                 |   60 +-
 code/math/floating.h                     |    6 +-
 code/math/vecmat.cpp                     |   28 +
 code/math/vecmat.h                       |   11 +
 code/menuui/techmenu.cpp                 |   45 +-
 code/mission/missionparse.cpp            |    4 +-
 code/missionui/missionbrief.cpp          |   15 +-
 code/missionui/missionscreencommon.cpp   |  107 +-
 code/missionui/missionscreencommon.h     |    2 +-
 code/missionui/missionshipchoice.cpp     |   20 +-
 code/missionui/missionweaponchoice.cpp   |   45 +-
 code/model/model.h                       |  189 +-
 code/model/modelcollide.cpp              |   10 +-
 code/model/modelinterp.cpp               | 1371 ++++++++++----
 code/model/modelread.cpp                 |  420 ++++-
 code/model/modelrender.cpp               | 2951 ++++++++++++++++++++++++++++++
 code/model/modelrender.h                 |  409 +++++
 code/object/object.cpp                   |  106 +-
 code/object/object.h                     |    9 +-
 code/object/objectsort.cpp               |  128 +-
 code/parse/lua.cpp                       |   36 +-
 code/particle/particle.cpp               |   12 +-
 code/render/3d.h                         |    1 +
 code/render/3ddraw.cpp                   |   12 +
 code/render/3dsetup.cpp                  |   10 +-
 code/ship/ship.cpp                       |  954 ++++++++--
 code/ship/ship.h                         |    5 +-
 code/ship/shipcontrails.cpp              |    3 +
 code/ship/shipfx.cpp                     |  183 +-
 code/ship/shipfx.h                       |    8 +
 code/starfield/starfield.cpp             |   33 +-
 code/weapon/shockwave.cpp                |   81 +-
 code/weapon/shockwave.h                  |    4 +-
 code/weapon/trails.cpp                   |  178 +-
 code/weapon/weapon.h                     |    3 +-
 code/weapon/weapons.cpp                  |  209 ++-
 projects/MSVC_2010/code.vcxproj          |   34 +-
 projects/MSVC_2010/code.vcxproj.filters  |   98 +-
 projects/MSVC_2013/code.vcxproj          |    4 +
 projects/MSVC_2013/code.vcxproj.filters  |   12 +
 98 files changed, 14258 insertions(+), 2967 deletions(-)