Fix inverted flipped-90 and flipped-270

This commit is contained in:
emersion 2017-12-01 09:49:32 +01:00
parent 6a69b4419f
commit 4a56957a37
No known key found for this signature in database
GPG Key ID: 0FDE7BE0E88F5E48
2 changed files with 8 additions and 8 deletions

View File

@ -105,16 +105,16 @@ static const float transforms[][4] = {
0.0f, 1.0f,
},
[WL_OUTPUT_TRANSFORM_FLIPPED_90] = {
0.0f, 1.0f,
1.0f, 0.0f,
0.0f, -1.0f,
-1.0f, 0.0f,
},
[WL_OUTPUT_TRANSFORM_FLIPPED_180] = {
1.0f, 0.0f,
0.0f, -1.0f,
},
[WL_OUTPUT_TRANSFORM_FLIPPED_270] = {
0.0f, -1.0f,
-1.0f, 0.0f,
0.0f, 1.0f,
1.0f, 0.0f,
},
};

View File

@ -99,16 +99,16 @@ void wlr_box_transform(struct wlr_box *box,
dest->y = box->y;
break;
case WL_OUTPUT_TRANSFORM_FLIPPED_90:
dest->x = box->y;
dest->y = box->x;
dest->x = box->height - box->y;
dest->y = box->width - box->x;
break;
case WL_OUTPUT_TRANSFORM_FLIPPED_180:
dest->x = box->x;
dest->y = box->height - box->y;
break;
case WL_OUTPUT_TRANSFORM_FLIPPED_270:
dest->x = box->height - box->y;
dest->y = box->width - box->x;
dest->x = box->y;
dest->y = box->x;
break;
}
}