diff options
| author | Anatolij Gustschin <[email protected]> | 2013-07-02 00:04:05 +0200 |
|---|---|---|
| committer | Anatolij Gustschin <[email protected]> | 2013-07-08 20:21:24 +0200 |
| commit | ff8fb56b6f7edafc1bcba8ef008b3f368cabe60d (patch) | |
| tree | 2db117f992892120bab9ab04b212700642adf0e7 /include | |
| parent | 327598945b13000065ca6ba3fe96c9bd45320999 (diff) | |
video: consolidate splash screen alignment code
Code for checking "splashpos" environment variable is
duplicated in drivers, move it to the common function.
Call this function also in the bmp display command to
consider "splashpos" settings.
Signed-off-by: Anatolij Gustschin <[email protected]>
Acked-by: Otavio Salvador <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/splash.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/splash.h b/include/splash.h index a8dd151c734..89ee7b22ec2 100644 --- a/include/splash.h +++ b/include/splash.h @@ -25,5 +25,12 @@ int splash_screen_prepare(void); +#ifdef CONFIG_SPLASH_SCREEN_ALIGN +void splash_get_pos(int *x, int *y); +#else +static inline void splash_get_pos(int *x, int *y) { } +#endif + +#define BMP_ALIGN_CENTER 0x7FFF #endif |
