diff options
author | Johannes Schickel | 2015-12-14 02:26:11 +0100 |
---|---|---|
committer | Johannes Schickel | 2015-12-14 02:26:11 +0100 |
commit | f7683083e2f47d9608f7ef3c4babfa56cb55bae0 (patch) | |
tree | 4c3c8bbee1663357c59734d5c9490818a85b4c33 /graphics | |
parent | f2926412fe7966bc34ceea1f87f2a4dae51df2eb (diff) | |
download | scummvm-rg350-f7683083e2f47d9608f7ef3c4babfa56cb55bae0.tar.gz scummvm-rg350-f7683083e2f47d9608f7ef3c4babfa56cb55bae0.tar.bz2 scummvm-rg350-f7683083e2f47d9608f7ef3c4babfa56cb55bae0.zip |
GRAPHICS: Use tabs for indentation.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/transparent_surface.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/graphics/transparent_surface.h b/graphics/transparent_surface.h index efb28149a5..4a23522aab 100644 --- a/graphics/transparent_surface.h +++ b/graphics/transparent_surface.h @@ -50,22 +50,22 @@ namespace Graphics { @brief The possible flipping parameters for the blit method. */ enum FLIP_FLAGS { - /// The image will not be flipped. - FLIP_NONE = 0, - /// The image will be flipped at the horizontal axis. - FLIP_H = 1, - /// The image will be flipped at the vertical axis. - FLIP_V = 2, - /// The image will be flipped at the horizontal and vertical axis. - FLIP_HV = FLIP_H | FLIP_V, - /// The image will be flipped at the horizontal and vertical axis. - FLIP_VH = FLIP_H | FLIP_V + /// The image will not be flipped. + FLIP_NONE = 0, + /// The image will be flipped at the horizontal axis. + FLIP_H = 1, + /// The image will be flipped at the vertical axis. + FLIP_V = 2, + /// The image will be flipped at the horizontal and vertical axis. + FLIP_HV = FLIP_H | FLIP_V, + /// The image will be flipped at the horizontal and vertical axis. + FLIP_VH = FLIP_H | FLIP_V }; enum AlphaType { - ALPHA_OPAQUE = 0, - ALPHA_BINARY = 1, - ALPHA_FULL = 2 + ALPHA_OPAQUE = 0, + ALPHA_BINARY = 1, + ALPHA_FULL = 2 }; /** |