This website requires JavaScript.
Explore
Help
Sign In
izzy
/
UnrealEngineUWP
Watch
0
Star
0
Fork
0
You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced
2026-03-26 18:15:20 -07:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
ed4da18f26da9b40199ebbed1a73efccbfcbe2cf
UnrealEngineUWP
/
Engine
/
Source
/
Developer
/
TaskGraph
/
Private
History
Matt Kuhlenschmidt
b7b1352760
Prevent TaskGraph style from looking for style resources in cooked builds
...
[CL 2618707 by Matt Kuhlenschmidt in Main branch]
2015-07-13 15:39:52 -04:00
..
SBarVisualizer.cpp
…
SEventsTree.cpp
…
SGraphBar.cpp
More Gamma Correction - Didn't catch this on the previous pass, apparently there was an implicit constructor allowing FLinearColor to FColor that was doing pow(2.2) gamma conversion inversion. Rather than leave the implicit constructor, I'm making it private and making people use ToFColor(true). Which is slightly more expensive, but performs the proper sRGB conversion. While fixing this, I found several terrible uses of the implicit constructor, when Hashing FLinearColors we were converting them to FColors first, when clearing FCanvas we were manually gamma correcting but leaving it as an FLinearColor, then implicitly converting to FColor, double gamma corrrecting. Neither of which should even be required as the RHI Clear command expects an FLinearColor. Additionally fixing a myriad of Slate widgets that were all doing FColor conversions needlessly only to convert back to FLinearColor when queuing slate draw commands.
2015-06-19 11:17:11 -04:00
SProfileVisualizer.cpp
PushMenu() now respects QueryPopupMethod(). All menus now support reusing windows.
2015-06-05 20:19:33 -04:00
SProfileVisualizer.h
PushMenu() now respects QueryPopupMethod(). All menus now support reusing windows.
2015-06-05 20:19:33 -04:00
STaskGraph.cpp
…
STimeline.cpp
More Gamma Correction - Didn't catch this on the previous pass, apparently there was an implicit constructor allowing FLinearColor to FColor that was doing pow(2.2) gamma conversion inversion. Rather than leave the implicit constructor, I'm making it private and making people use ToFColor(true). Which is slightly more expensive, but performs the proper sRGB conversion. While fixing this, I found several terrible uses of the implicit constructor, when Hashing FLinearColors we were converting them to FColors first, when clearing FCanvas we were manually gamma correcting but leaving it as an FLinearColor, then implicitly converting to FColor, double gamma corrrecting. Neither of which should even be required as the RHI Clear command expects an FLinearColor. Additionally fixing a myriad of Slate widgets that were all doing FColor conversions needlessly only to convert back to FLinearColor when queuing slate draw commands.
2015-06-19 11:17:11 -04:00
TaskGraphStyle.cpp
Prevent TaskGraph style from looking for style resources in cooked builds
2015-07-13 15:39:52 -04:00
TaskGraphStyle.h
…
VisualizerEvents.cpp
…