1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 20:07:34 +00:00

LibGfx: Rename RotationDirection members

Left => CounterClockwise
Right => Clockwise

Makes much more sense for a rotation
This commit is contained in:
Matthew Olsson 2021-05-02 22:38:29 -07:00 committed by Andreas Kling
parent f7ea1eb610
commit fbe712e265
3 changed files with 5 additions and 5 deletions

View file

@ -83,8 +83,8 @@ static StorageFormat determine_storage_format(BitmapFormat format)
struct BackingStore;
enum RotationDirection {
Left,
Right
CounterClockwise,
Clockwise
};
class Bitmap : public RefCounted<Bitmap> {