diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-09 17:30:22 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-08-09 17:30:22 -0400 |
commit | bd2e9a7168dc530c03b7b45ecfdd5ce0aff0ddb8 (patch) | |
tree | 76b53d12dde6ec82f989a1a7bd72146058189374 /render | |
parent | 5a7595af77bdccf245dcdd9245cf0d408344f633 (diff) |
Style cleanup
Diffstat (limited to 'render')
-rw-r--r-- | render/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/render/matrix.c b/render/matrix.c index a927ed74..e49d365e 100644 --- a/render/matrix.c +++ b/render/matrix.c @@ -10,7 +10,7 @@ static inline int mind(int row, int col) { void wlr_matrix_identity(float (*output)[16]) { static const float identity[16] = { - 1.0f, 0.0f, 0.0f, 0.0f, + 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 1.0f |