Fabric: Fixed Identity Transform matrix literal

Summary:
@public
As Janic janicduplessis mentioned on GH the literal should be slightly different.
8df7d51600 (r29390543)

And here is prooflink: https://developer.apple.com/documentation/quartzcore/calayer/identity_transform?language=objc

Thanks Janic!

Created from Diffusion's 'Open in Editor' feature.

Reviewed By: fkgozali

Differential Revision: D8508559

fbshipit-source-id: 7427be36e041bf500bee1e06d2293f7b5ea8cf21
This commit is contained in:
Valentin Shergin 2018-06-18 22:53:53 -07:00 committed by Facebook Github Bot
parent 843a433e87
commit 9a59428468

View File

@ -14,7 +14,7 @@ namespace react {
struct Transform {
std::array<Float, 16> matrix {{
0, 0, 0, 0,
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1