aboutsummaryrefslogtreecommitdiff
path: root/graphics/transparent_surface.h
diff options
context:
space:
mode:
authorJohannes Schickel2015-12-14 02:26:11 +0100
committerJohannes Schickel2015-12-14 02:26:11 +0100
commitf7683083e2f47d9608f7ef3c4babfa56cb55bae0 (patch)
tree4c3c8bbee1663357c59734d5c9490818a85b4c33 /graphics/transparent_surface.h
parentf2926412fe7966bc34ceea1f87f2a4dae51df2eb (diff)
downloadscummvm-rg350-f7683083e2f47d9608f7ef3c4babfa56cb55bae0.tar.gz
scummvm-rg350-f7683083e2f47d9608f7ef3c4babfa56cb55bae0.tar.bz2
scummvm-rg350-f7683083e2f47d9608f7ef3c4babfa56cb55bae0.zip
GRAPHICS: Use tabs for indentation.
Diffstat (limited to 'graphics/transparent_surface.h')
-rw-r--r--graphics/transparent_surface.h26
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
};
/**