#lockdown nick.penwarden
#rb nobody
==========================
MAJOR FEATURES + CHANGES
==========================
Change 2945508 on 2016/04/15 by Nick.Whiting
Integrating fix for module loading for SteamVR, prevents crashing in race conditions
Change 2950385 on 2016/04/20 by Ryan.Vance
We need to test if the hmd is enabled if it exists. Otherwise, this will return true even if we aren't rendering in stereo if there's an hmd plugin loaded.
Change 2955406 on 2016/04/25 by Chad.Taylor
Factor scale into the motion controller component late update
Change 2956275 on 2016/04/26 by Nick.Whiting
Initial integration of OSVR plugin support
#pr 2097
Change 2964412 on 2016/05/03 by Chad.Taylor
PSVR's GetControllerOrientationAndPosition now returns false if status is NOT_STARTED or CALIBRATING
Change 2964612 on 2016/05/03 by Ryan.Vance
Copying //UE4/Dev-VR-InstancedStereo to Dev-VR-Minimal (//UE4/Dev-VR-Minimal)
Change 2985528 on 2016/05/20 by Ryan.Vance
#jira UE-30715
Keep from spamming the output log for every single shader compile when instanced stereo is enabled for a shader platform that doesn't support it.
Change 2986246 on 2016/05/22 by Chad.Taylor
HMD late-update thread safety
Change 2998629 on 2016/06/02 by Ryan.Vance
Post 4.12 Oculus plugin integration
Change 3000057 on 2016/06/03 by Ryan.Vance
Updating serialize function for custom material nodes.
The instanced stereo refactor moved Frame uniforms *back* to View (post 4.11). This should update only objects that went through the prior transformation from View *to* Frame.
The serialize function was also being used to update Parameters.WorldPosition to Parameters.AbsoluteWorldPosition. This should still run as expected.
Change 3002187 on 2016/06/06 by Ryan.Vance
Switching from ._m syntax to array syntax. The cross compiler chokes on the former.
Change 3004153 on 2016/06/07 by Chad.Taylor
Enable PSVR on VS2015
#jira UE-31202
Change 3009958 on 2016/06/10 by Ryan.Vance
#jira UE-31922
Velocity and depth pre-pass for dynamic instanced meshes with isr was only rendering in the left eye.
Need to loop over the draw call the same way we do for the base pass.
Change 3011054 on 2016/06/13 by Chad.Taylor
Merging "SteamVR Positional Late-Update" back into Dev-VR
Change 3013361 on 2016/06/14 by Ryan.Vance
#jira UE-32022
Fixing dbuffer decal integration errors.
[CL 3018810 by Ryan Vance in Main branch]
#lockdown Nick.Penwarden
==========================
MAJOR FEATURES + CHANGES
==========================
Change 2839897 on 2016/01/22 by Ori.Cohen
Allow static mesh editor to specify a default collision profile.
#rb Lina.Halper
#UE-2836
Change 2840489 on 2016/01/22 by Ori.Cohen
Fix collision customization so that it respects const editing property
#rb Marc.Audy
Change 2840528 on 2016/01/22 by Ori.Cohen
Fix compile error and actually get value from attribute
Change 2840672 on 2016/01/22 by Zak.Middleton
#ue4 - Include data from USkinnedMeshComponent in USkeletalMeshComponent::GetResourceSize().
#rb Michael.Noland
Change 2841314 on 2016/01/24 by Marc.Audy
Fix depressingly frequent misspellings of 'suppress'
Change 2841323 on 2016/01/24 by Marc.Audy
Reserve worst case memory for TSet Intersect, Union, and Difference to avoid memory allocations during iteration
Ensure that TSet Intersect considers the least number of elements possible
Early out from TSet Contains if Other is larger than this
Clarify comment on TSet Difference
#rb Steve.Robb
Change 2841380 on 2016/01/24 by Aaron.McLeran
UE-25586 Audio assets not correctly reporting resource memory usage
Tested on PC/PS4 and with Editor builds. Memory reporting is working for all cases now.
Change 2841385 on 2016/01/24 by Aaron.McLeran
UE-21210 Adding subtitle priority to USoundWave
Change 2841386 on 2016/01/24 by Marc.Audy
Return null for GameNetDriver if World is null instead of crashing
Change 2841409 on 2016/01/24 by Aaron.McLeran
UE-25514 Removing load for default objects for every sound wave
Change 2841858 on 2016/01/25 by Ori.Cohen
Make sure that PIE face index results are consistent with runtime
#rb Benn.Gallagher
Change 2841977 on 2016/01/25 by Ori.Cohen
Fix object type customization so that it's only enabled when custom is selected. (Accidently broke this in recent change)
Change 2841982 on 2016/01/25 by Marc.Audy
Minor optimization by avoiding recreating FNames repeatedly in constructor
Change 2842169 on 2016/01/25 by Benn.Gallagher
Fixes to animBP compiler and instance to store and double buffer internal machine state weights on the instance. So they can be queried cross-machine without issue.
#rb Lina.Halper
Change 2842390 on 2016/01/25 by Ori.Cohen
Fix in world editing of BodyInstance not working.
No longer serializing Scale3D as this is allways initialized in InitBody.
No longer overwriting MassInKg and renamed to to MassInKgOverride which better reflects what this variable does.
#JIRA UE-25518
#rb Lina.Halper
Change 2843579 on 2016/01/26 by Marc.Audy
Only update replication when it actually changes
Don't check calling SetIsReplicated if the class cannot replicate, instead output an error message
Fix spelling in comment
#rb Ori.Cohen
Change 2843627 on 2016/01/26 by Marc.Audy
Add \\ as a default console key for Italian keyboard layouts
#jira UE-25198
#rb James.Golding
Change 2843628 on 2016/01/26 by Marc.Audy
Don't reconstruct FName on each call to GetHitResultAtScreenPosition
#rb James.Golding
Change 2843671 on 2016/01/26 by Martin.Wilson
Fix incorrect bone transforms being pushed to the renderer during SetSkeletalMesh. This presented as motion blur artifacts in editor
#rb Thomas.Sarkanen
Change 2843768 on 2016/01/26 by Marc.Audy
Inline Get Component functions in TriggerBase
Change 2844003 on 2016/01/26 by Zak.Middleton
#ue4 - Fix FMath::Fmod(X, Y) sometimes returning small negative values for positive X and Y due to float imprecision. Added tests to math tests at startup to check this, and also to better handle results close to Y. Wrap the ensure on Y=0 within a conditional so a breakpoint can be used during debugging (to distinguish between zero and very small input).
#codereview Laurent.Delayen
Change 2844005 on 2016/01/26 by Zak.Middleton
#ue4 - Convert uses of fmod() and fmodf() to use FMath::Fmod() instead.
Also see CL 2844003
[CL 2855709 by Marc Audy in Main branch]
#lockdown nick.penwarden
==========================
MAJOR FEATURES + CHANGES
==========================
Change 2821445 on 2016/01/08 by Olaf.Piesche
More vertex factory improvements, storing off particle vertex factories on the scene proxy instead of the dynamic data to avoid recreating all the time; saves up to 2ms render thread time according to QA's testing.
#rb martin.mittring
Change 2821520 on 2016/01/08 by Olaf.Piesche
Coloring subuv modules green for easier visual ID
#rb martin.mittring
Change 2823479 on 2016/01/11 by Chris.Bunner
Updated Lightmass HLOD logic to avoid HLODs shadowing non-related meshes. Duplicated CL#2823104 from Dev-General.
Change 2823570 on 2016/01/11 by Zabir.Hoque
Introduce multiplier that controls decal fade speed.
#CodeReview: Martin.Mittring
#1777
Change 2823615 on 2016/01/11 by Uriel.Doyon
Fixed stencil ref multithreading issue.
Fixed state caching when depth range is enabled.
#jira UE-24564
#review marcus.wassmer
Change 2823652 on 2016/01/11 by Zabir.Hoque
Rename FadeSpeedScale -> FadeDurationScale to be logically more consistent.
#CodeReview: Martin.Mittring
Change 2824065 on 2016/01/11 by Brian.Karis
Fixed last viewrect motion blur bug. Enabled new motion blur algorithm for default.
Change 2825432 on 2016/01/12 by Zabir.Hoque
Store off view matrices at at time of freezing and base lod selection useing relevant matrices, thus allows lods to be frozen. #OR-10918
#CodeReview: Marcus.Wassmer, Rolando.Caloca, Martin.Mittring
Change 2825971 on 2016/01/12 by Brian.Karis
New motion blur enabled.
Change 2825974 on 2016/01/12 by Brian.Karis
Fixed refraction check value. 1 does nothing not 0.
Change 2825975 on 2016/01/12 by Brian.Karis
Cloth gets skylight for movable sky.
Change 2827519 on 2016/01/13 by Zabir.Hoque
ALLOW_UAV_CONDITION did not have a safe fallback when not SM5.0 && COMPILER_SUPPORTS_ATTRIBUTES.
#CodeReview Martin.Mittring, Rolando.Caloca
Change 2830172 on 2016/01/15 by Rolando.Caloca
DR - Minor cleanup
- Renamed Vertex Factories' struct Data to struct FData
- Removed Data type on FVertexFactory
Change 2830242 on 2016/01/15 by Rolando.Caloca
DR - Prep cleanup for gpu morph targets
- Split common code for GPU skin cache into a base class
- Moved some local static arrays from UpdateMorphVertexBuffer() to static members
#codereview Lina.Halper
Change 2830455 on 2016/01/15 by Rolando.Caloca
DR - Compile fix from bad merge
#jira UE-25557
Change 2832023 on 2016/01/18 by Rolando.Caloca
DR - Removed TangentZDelta_DEPRECATED from FVertexAnimDelta
#rb Marcus.Wassmer
#codereview Lina.Halper
Change 2832067 on 2016/01/18 by Gil.Gribb
UE4 - Changed PC to default to parallel rendering when not in editor. Fixed lack of a stall on texture locks and unlocks coming from texture streamer. Fixed a few cases where stuff was being added to rhicommandlists even when we were bypassed.
Change 2834379 on 2016/01/19 by Gil.Gribb
UE4 - fix perf regression related to cvar
Change 2834864 on 2016/01/19 by Olaf.Piesche
Fixing potential crash with auto-kill trail emitters, fixing use of the wrong flag to auto-deactivate
#codereview gil.gribb
Change 2835777 on 2016/01/20 by David.Hill
EyeAdaptation - using a screen center focus in the weights
#rb Martin Mitring
related to: UE-15509. This is adding the ability to focus the basic eye-adaptation region in the center of the screen, and cvar functionality for paragon testing on ps4
Change 2835778 on 2016/01/20 by David.Hill
EyeAdapation - DefaultFeature for method
#rb Martin.Mitring
Adding a default feature cvar for eye adaptation method
Change 2837410 on 2016/01/20 by David.Hill
OR-13213 SetupPerObjectProjection()
#test:PC
#rb:Martin.Mitring
#codereview:Daniel.Wright
[CL 2845257 by Gil Gribb in Main branch]
#lockdown nick.penwarden
==========================
MAJOR FEATURES + CHANGES
==========================
Change 2771498 on 2015/11/18 by Rolando.Caloca
DevRendering - HlslParser - Do not crash if an unknown preprocessor directive is found; add proper support for #pragma
#codereview Marcus.Wassmer
Change 2771600 on 2015/11/18 by Rolando.Caloca
DevRendering - SCW - Added support for running the platform shader compiler for one usf file off the dumped usf
Usage:
ShaderCompileWorker -directcompile FILENAME.USF -entry=EntryPoint -format=PCD3D_SM5/SF_PS4/etc -vs/-ps/-gs/-hs/-ds/-cs
-Also removed old communication enum from SCW
#rb Daniel.Wright
Change 2771647 on 2015/11/18 by Rolando.Caloca
DevRendering - HlslParser - Refactored removed unused outputs code in prep for reusing a lot of this code
- Entry point string now gets modified to the optimized one
- Fixed parser allocator when requesting pages bigger than PageSize
#rb Chris.Bunner
Change 2772133 on 2015/11/18 by Chris.Bunner
Removed physics shape type zeroing on Speedtree import. UE-23285
#rb Ori.Cohen
Change 2772225 on 2015/11/18 by Rolando.Caloca
DevRendering - Hlsl - Support for removing unused inputs on pixel shaders
- Fix some shadow variable warnings
#rb Chris.Bunner, Nick.Penwarden
Change 2772469 on 2015/11/18 by Daniel.Wright
Fixed SCW always exiting after compiling a long shader, now checks idle time starting from the end of the last compile task
Automated smoke tests aren't run in standalone programs which are frequently launched as they increase the startup time (doubles startup time of SCW as shown in sampling profile)
#rb Rolando.Caloca
Change 2772471 on 2015/11/18 by Daniel.Wright
Particle SubUV cutouts
* A new asset type 'SubUV Animation' precomputes bounding geometry for every frame of a SubUV texture animation.
* Particle emitters with a SubUV module can then use this SubUV Animation to render with much tigher bounding geometry to reduce overdraw.
* GPU performance savings depend on how much empty space (zero alpha) existed in the texture. Measured a reduction of 2-3x GPU time on a smoke effect.
* This only works if the material does not modify opacity to reveal areas with zero texture alpha
Change 2772483 on 2015/11/18 by Marcus.Wassmer
Filtering options on UnrealPak -list
#rb Josh.Adams
Change 2772644 on 2015/11/18 by Daniel.Wright
Integrate - Temporal AA dithering is only enabled if outputting to a low precision format
#rb Nick.Penwarden
Change 2773336 on 2015/11/19 by Rolando.Caloca
DevRendering - PS4 shaders - Added input/output attribute information when r.PS4StripExtraShaderBinaryData=0
#rb Marcus.Wassmer
Change 2773476 on 2015/11/19 by Rolando.Caloca
DevRendering - PS4 Shader attribute export stats
Run using r.PS4DumpExportStats 1 in the console
- Also fixed non-vertex shaders not getting optional data
#codereview Marcus.Wassmer
Change 2773865 on 2015/11/19 by Gil.Gribb
UE4 - Added an FName churn tracker.
Change 2773900 on 2015/11/19 by Rolando.Caloca
DevRendering - Fix sharing shaders for material & mesh shaders
#rb Marcus.Wassmer
Change 2774277 on 2015/11/19 by Gil.Gribb
UE4 - Did minor optimizations to the PS4 RHI and drawlists.
Change 2774421 on 2015/11/19 by Olaf.Piesche
Fix#2 for UE-23325 - separate translucency materials don't show in static mesh editor
#codereview Martin.Mittring
Change 2774447 on 2015/11/19 by Rolando.Caloca
DevRendering - Velocity and Depth shader pipelines
#rb Marcus.Wassmer
Change 2774603 on 2015/11/19 by Marcus.Wassmer
Windowed vsync for ps4
#rb Rolando.Caloca
Change 2775650 on 2015/11/20 by Rolando.Caloca
DevRendering - Added two utility overloads per UDN suggestion
#codereview Gil.Gribb
Change 2775798 on 2015/11/20 by David.Hill
Adding a new AutoExposure method
#rb Martin.Mittring
Change 2776345 on 2015/11/20 by Daniel.Wright
Capsule shadows for movable skylight
* Gathers capsule occlusion along the unoccluded sky cone computed by Distance Field Ambient Occlusion
* Requires DFAO to be enabled at the moment
* Some serious artifacts remaining in indoor scenarios, as the unoccluded sky direction is not continuous
Change 2777033 on 2015/11/22 by Uriel.Doyon
Enabled SceneTextures node validation when material domain is DeferredDecal
#review Martin.Mittring
#jira UE-23141
Change 2778618 on 2015/11/23 by Daniel.Wright
optimized shaders to use SvPosition where possible, following change could remove some unused interpolator
[CL 2697164 by Martin Mittring in Main branch]