mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
fddcdcac09e07b920fcabffe3d91cb2be2bef32b
8 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
20bf0eb6a1 |
Updating copyright notices to 2017 (copying from //Tasks/UE4/Dev-Copyright-2017).
#rb none #lockdown Nick.Penwarden [CL 3226823 by Ben Marsh in Main branch] |
||
|
|
4ba423868f |
Copying //UE4/Dev-Build to //UE4/Dev-Main (Source: //UE4/Dev-Build @ 3209340)
#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] |
||
|
|
093fd5df10 |
Copying //UE4/Dev-Mobile to //UE4/Dev-Main (Source: //UE4/Dev-Mobile @ 3155909)
#lockdown Nick.Penwarden #rb none ========================== MAJOR FEATURES + CHANGES ========================== Change 3118534 on 2016/09/08 by Steve.Cano Certain non-looping SFX would not properly fire "Stop" events when the effect was finished, and therefore Sound Mixes that should end at the end of a SFX (such as ducking the BGM volume) were not properly finishing. Fixing the IsSourceFinished call to check the Position of the player to determine if we are actually done playing, which was not working properly before for PCM sounds. #jira UE-35016 #ue4 #android Change 3119125 on 2016/09/09 by Dmitriy.Dyomin Mobile launcher profile wizard: Fixed case where DLC will not be built if user selects non Development build configuration Fixed case where project maps will be empty if UE4 and project located on different drives Change 3122584 on 2016/09/13 by Allan.Bentham Add simple clip plane for planar reflections. #jira UE-32449 Change 3129390 on 2016/09/16 by Chris.Babcock Fixed ES 3.1 detection to also support devices returning ES 3.2 support (eg Note 7) #jira UE-35598 Change 3129867 on 2016/09/18 by Jack.Porter Fixed ES 3.1 detection to also support devices returning ES 3.2 support (eg Note 7) #jira UE-35598 Change 3131961 on 2016/09/20 by Allan.Bentham Fix missing editor widgets and gamma incorrectness when mobileHDR == false. Fix editor widget rendering when hdr encoding is active. #jira UE-34281 Change 3132717 on 2016/09/20 by Chris.Babcock Add $S(ProjectDir) to UPL #jira UE-35483 #ue4 Change 3132940 on 2016/09/20 by Chris.Babcock Corrected case for some include files (contributed by Yukariin) #jira UE-33816 #PR #2636 #ue4 #android Change 3134098 on 2016/09/21 by Allan.Bentham Mobile CSM shadow quality controllable via quality levels. #jira UEMOB-74 Change 3134931 on 2016/09/21 by Chris.Babcock Allow Windows types in vulkan.h #jira UE-36270 #ue4 #vulkan Change 3135380 on 2016/09/21 by Dmitriy.Dyomin Plugin which exposes some of BuildPatchServices functionality to BP. Inteded to be used on mobile platforms for donwloading game content. Right now misses: IOS download directory and iOS WiFi detection #jira UEMOB-157 Change 3136004 on 2016/09/22 by Allan.Bentham Add project option to disable vertex fog on mobile. Vertex fog is now enabled even when mobile HDR is not. #jira UEMOB-148 Change 3137377 on 2016/09/22 by Dmitriy.Dyomin Fix compile error from CL# 3135380 Change 3139571 on 2016/09/26 by Jack.Porter Applied deferred change CL 3101462 to mobile to make planar reflections no longer update GPU particles Change 3139663 on 2016/09/26 by Jack.Porter Include Android shader cache files when packaging Change 3142839 on 2016/09/28 by Dmitriy.Dyomin Added WiFi connection detection on iOS Change 3142845 on 2016/09/28 by Jack.Porter Fixed various issues with TcpMessageTransport discovered when transferring automation testing screenshots from mobile devices - socket not readable or writable is not an error condition if output buffer is full - messages were previously limited to 64kb but screenshots overflowed this - messages over 8kb were not reliably received as the inbound buffer was full so the available bytes was always less than the message length - sending large messages was not reliable due to the output buffer being full Change 3143280 on 2016/09/28 by Jack.Porter Clear out UnbuiltInstanceBoundsList when async building a tree with no instances Change 3143282 on 2016/09/28 by Jack.Porter Fix issue where client functional tests in the current map do not appear on clients running with cooked content. Problem is that the AssetRegistry uses in-memory metadata created on load for currently-loaded assets, but cooked content only has the serialized AssetRegistry and individual assets do not contain any metadata. Change 3143808 on 2016/09/28 by Steve.Cano Assume that the app starts in focus at startup and don't wait for an "APP_EVENT_STATE_WINDOW_GAINED_FOCUS" event to fire, as this event will not come down from SplashActivity since it is not a NativeActivity. If the user then rotates the device in Sensor or FullSensor orientation during SplashActivity and forces an eglSurface recreation, the initial Create will properly execute if we're "in focus". Previously, the create-destroy-create cycle would not properly execute due to the EventManager thinking the app was not yet in focus, and would cause the second create to get a 0x3003 error (EGL_BAD_ALLOC) #jira UE-35004 #ue4 #android Change 3144880 on 2016/09/29 by Jack.Porter Merging //UE4/Dev-Main to Dev-Mobile (//UE4/Dev-Mobile) Change 3146220 on 2016/09/30 by Dmitriy.Dyomin Adjusted device button style to make it more readable. #jira UE-21881 Change |
||
|
|
d5a5e56664 |
Copying //UE4/Dev-Editor to Dev-Main (//UE4/Dev-Main)
#lockdown nick.penwarden
Change 2889481 on 2016/03/02 by Richard.TalbotWatkin
Fixed socket preview component in Static Mesh Editor so that it remains correctly attached if the socket is renamed (Contributed by Manny-MADE).
PR #2094
#jira UE-27338 - GitHub 2094 : BUGFIX: Socket preview component broken in Static Mesh Editor
FSlateAtlasedTextureResource
Made changes to the Perforce source control provider so that operations can be cancelled with immediate effect if there is an issue connecting to the server.
#jira UE-24632 - "Updating file(s) source control status..." dialog doesn't allow Cancel
#RB Thomas.Sarkanen
Change 2890359 on 2016/03/02 by Nick.Darnell
Jira Mirroring - Adding some tools for matching gits sha to perforce commits. Also adding the program for scraping jira issues and pushing them elsewhere.
Change 2892008 on 2016/03/03 by Richard.TalbotWatkin
Back out changelist 2813475
Change 2892086 on 2016/03/03 by Richard.TalbotWatkin
Back out changelist 2813457
Change 2892117 on 2016/03/03 by Richard.TalbotWatkin
Back out changelist 2812830
Change 2892316 on 2016/03/03 by Richard.TalbotWatkin
Fixed conversion of brushes to volumes so that the original transform isn't lost.
#jira UE-24404 - Convert Actor from BSP to volume can affect the actor transform
Change 2892765 on 2016/03/03 by Andrew.Rodham
Changed public facing level editor classes to use ILevelEditor instead of SLevelEditor
#codereview Mike.Fricker
Change 2894154 on 2016/03/04 by Richard.TalbotWatkin
Fixed error in USplineComponent::GetSegmentLength when the segment is linear or constant.
Change 2894481 on 2016/03/04 by Cody.Albert
#jira UE-27830
Fixed mismatched layout name
Change 2896339 on 2016/03/06 by Richard.TalbotWatkin
Fixed undo issues in texture paint mode.
#jira UE-21206 - Texture Painting bugs
Change 2896713 on 2016/03/07 by Joe.Conley
Replacing #ifndef with #pragma once
Change 2896955 on 2016/03/07 by Cody.Albert
#jira UE-27711
Added initialization for LastHighlightInteractionTime
Change 2898895 on 2016/03/08 by Richard.TalbotWatkin
More optimizations to editing actors with a large number of components. Improved performance when executing construction scripts.
#jira UE-24821 - Blueprints with thousands of components perform very badly when selected in the Level Viewport
Change
|
||
|
|
71d3d81e81 |
Back out Dev-Editor -> Main copy up.
#lockdown Nick.Penwarden [CL 2936997 by Nick Darnell in Main branch] |
||
|
|
03c1df75c3 |
Copying //UE4/Dev-Editor to Dev-Main (//UE4/Dev-Main)
#lockdown nick.penwarden
Change 2889481 on 2016/03/02 by Richard.TalbotWatkin
Fixed socket preview component in Static Mesh Editor so that it remains correctly attached if the socket is renamed (Contributed by Manny-MADE).
PR #2094
#jira UE-27338 - GitHub 2094 : BUGFIX: Socket preview component broken in Static Mesh Editor
FSlateAtlasedTextureResource
Made changes to the Perforce source control provider so that operations can be cancelled with immediate effect if there is an issue connecting to the server.
#jira UE-24632 - "Updating file(s) source control status..." dialog doesn't allow Cancel
#RB Thomas.Sarkanen
Change 2890359 on 2016/03/02 by Nick.Darnell
Jira Mirroring - Adding some tools for matching gits sha to perforce commits. Also adding the program for scraping jira issues and pushing them elsewhere.
Change 2892008 on 2016/03/03 by Richard.TalbotWatkin
Back out changelist 2813475
Change 2892086 on 2016/03/03 by Richard.TalbotWatkin
Back out changelist 2813457
Change 2892117 on 2016/03/03 by Richard.TalbotWatkin
Back out changelist 2812830
Change 2892316 on 2016/03/03 by Richard.TalbotWatkin
Fixed conversion of brushes to volumes so that the original transform isn't lost.
#jira UE-24404 - Convert Actor from BSP to volume can affect the actor transform
Change 2892765 on 2016/03/03 by Andrew.Rodham
Changed public facing level editor classes to use ILevelEditor instead of SLevelEditor
#codereview Mike.Fricker
Change 2894154 on 2016/03/04 by Richard.TalbotWatkin
Fixed error in USplineComponent::GetSegmentLength when the segment is linear or constant.
Change 2894481 on 2016/03/04 by Cody.Albert
#jira UE-27830
Fixed mismatched layout name
Change 2896339 on 2016/03/06 by Richard.TalbotWatkin
Fixed undo issues in texture paint mode.
#jira UE-21206 - Texture Painting bugs
Change 2896713 on 2016/03/07 by Joe.Conley
Replacing #ifndef with #pragma once
Change 2896955 on 2016/03/07 by Cody.Albert
#jira UE-27711
Added initialization for LastHighlightInteractionTime
Change 2898895 on 2016/03/08 by Richard.TalbotWatkin
More optimizations to editing actors with a large number of components. Improved performance when executing construction scripts.
#jira UE-24821 - Blueprints with thousands of components perform very badly when selected in the Level Viewport
Change
|
||
|
|
bb70b349ce |
Merging CL 2804086 from //UE4/Release-4.11 to Dev-Main (//UE4/Dev-Main) to isolate copyright update
#lockdown Nick.Penwarden [CL 2819020 by Matthew Griffin in Main branch] |
||
|
|
ed69c79ff7 |
Device output log window, currently implemented only for Android. Hidden under editor experimental settings
#jira UEMOB-39 #codereview Jack.Porter [CL 2710794 by Dmitriy Dyomin in Main branch] |