diff options
author | inmarket <andrewh@inmarket.com.au> | 2014-02-03 18:02:23 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2014-02-03 18:02:23 +1000 |
commit | d0b363bb125d0913246796a597ecea4aeb8d578b (patch) | |
tree | 66f69c1a83b7c6a4407964ded39dcec4b1dc91c1 /src/gfx.c | |
parent | a6c22fc364c25e8673488f0f5c36e3538546d898 (diff) | |
parent | d869d9b3b80cb9ab2314840b2fa274e89e5342db (diff) | |
download | uGFX-d0b363bb125d0913246796a597ecea4aeb8d578b.tar.gz uGFX-d0b363bb125d0913246796a597ecea4aeb8d578b.tar.bz2 uGFX-d0b363bb125d0913246796a597ecea4aeb8d578b.zip |
Merge branch 'master' into gfile
Diffstat (limited to 'src/gfx.c')
-rw-r--r-- | src/gfx.c | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -15,6 +15,8 @@ #include "gfx.h" +static bool_t initDone = FALSE; + /* These init functions are defined by each module but not published */ extern void _gosInit(void); extern void _gosDeinit(void); @@ -57,6 +59,11 @@ extern void _gosDeinit(void); void gfxInit(void) { + /* Ensure we only initialise once */ + if (initDone) + return; + initDone = TRUE; + // These must be initialised in the order of their dependancies _gosInit(); @@ -91,8 +98,11 @@ void gfxInit(void) void gfxDeinit(void) { - // We deinitialise the opposit way as we initialised + if (!initDone) + return; + initDone = FALSE; + // We deinitialise the opposite way as we initialised #if GFX_USE_GAUDOUT _gaudoutDeinit(); #endif |