#rnx
#rb none
#ROBOMERGE-SOURCE: CL 10869241 via CL 10869527 via CL 10869904
#ROBOMERGE-BOT: (v613-10869866)
[CL 10870586 by ryan durand in Main branch]
#lockdown Nick.Penwarden
#rb none
==========================
MAJOR FEATURES + CHANGES
==========================
Change 3209340 on 2016/11/23 by Ben.Marsh
Convert UE4 codebase to an "include what you use" model - where every header just includes the dependencies it needs, rather than every source file including large monolithic headers like Engine.h and UnrealEd.h.
Measured full rebuild times around 2x faster using XGE on Windows, and improvements of 25% or more for incremental builds and full rebuilds on most other platforms.
* Every header now includes everything it needs to compile.
* There's a CoreMinimal.h header that gets you a set of ubiquitous types from Core (eg. FString, FName, TArray, FVector, etc...). Most headers now include this first.
* There's a CoreTypes.h header that sets up primitive UE4 types and build macros (int32, PLATFORM_WIN64, etc...). All headers in Core include this first, as does CoreMinimal.h.
* Every .cpp file includes its matching .h file first.
* This helps validate that each header is including everything it needs to compile.
* No engine code includes a monolithic header such as Engine.h or UnrealEd.h any more.
* You will get a warning if you try to include one of these from the engine. They still exist for compatibility with game projects and do not produce warnings when included there.
* There have only been minor changes to our internal games down to accommodate these changes. The intent is for this to be as seamless as possible.
* No engine code explicitly includes a precompiled header any more.
* We still use PCHs, but they're force-included on the compiler command line by UnrealBuildTool instead. This lets us tune what they contain without breaking any existing include dependencies.
* PCHs are generated by a tool to get a statistical amount of coverage for the source files using it, and I've seeded the new shared PCHs to contain any header included by > 15% of source files.
Tool used to generate this transform is at Engine\Source\Programs\IncludeTool.
[CL 3209342 by Ben Marsh in Main branch]
#lockdown nick.penwarden
==========================
MAJOR FEATURES + CHANGES
==========================
Change 2897367 on 2016/03/07 by Chad.Taylor@Chad.Taylor_Z3299_Tango
PS4Tracker Submit call now assigning the appropriate memory type read mode
Change 2920696 on 2016/03/23 by Nick.Whiting@nick.whiting_T7326_DevVRStream
Fixed analytics event for VRPIE to have a description
#jira UE-28562
Change 2925395 on 2016/03/28 by Chad.Taylor@Chad.Taylor_Z3299_Tango
Aspect ratio and buffer clearing fixed up to properly handle non-standard viewport configurations.
#jira UE-28816
Change 2932703 on 2016/04/04 by Nick.Whiting@nick.whiting_T7326_DevVRStream
Merging CL 2922134, fix for culling because of stale view matrices
Change 2932761 on 2016/04/04 by Nick.Whiting@nick.whiting_T7326_DevVRStream
Oculus 1.3 Engine support, merged from 4.11 stream
Change 2932762 on 2016/04/04 by Nick.Whiting@nick.whiting_T7326_DevVRStream
Removing redundant libraries for Oculus LibOVRMobile
Change 2932765 on 2016/04/04 by Nick.Whiting@nick.whiting_T7326_DevVRStream
Merging updated license files for Oculus libraries
Change 2938342 on 2016/04/08 by Ryan.Vance@ryan.vance_devvr
Fixing bloom offset in stereo.
Change 2938427 on 2016/04/08 by Ryan.Vance@ryan.vance_devvr
Adding PSVR support for changing the screen percentage dynamically. Previously it could only be changed with ini settings and a relaunch.
Reworked mutex use in reprojection thread. Some things weren't locked that should have been and removed a redundant mutex.
Change 2938736 on 2016/04/08 by Ryan.Vance@ryan.vance_devvr
#jira UE-26722
Updating ISR related code for debug view to fix tesselation.
Change 2939709 on 2016/04/11 by Chad.Taylor@Chad.Taylor_Z3299_Tango
Explicit order prioritization for ISceneViewExtensions for proper sampling order
Change 2939717 on 2016/04/11 by Chad.Taylor@Chad.Taylor_Z3299_Tango
Initial stereo layer implementation sans editor wireframe visualization
Change 2939816 on 2016/04/11 by Chad.Taylor@Chad.Taylor_Z3299_Tango
Stereo layer compionent visualizer
[CL 2940449 by Nick Whiting in Main branch]