diff options
author | inmarket <andrewh@inmarket.com.au> | 2018-11-03 12:29:30 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2018-11-03 12:29:30 +1000 |
commit | 8a9ed5195b3345635533b6150b9303abbaf5adf3 (patch) | |
tree | b57c4580a50b261e75a19e53124acb3670d47b6f /demos/applications | |
parent | 7c5a6c928fa7129cf754c9c73c5c7ae39372ba9d (diff) | |
download | uGFX-8a9ed5195b3345635533b6150b9303abbaf5adf3.tar.gz uGFX-8a9ed5195b3345635533b6150b9303abbaf5adf3.tar.bz2 uGFX-8a9ed5195b3345635533b6150b9303abbaf5adf3.zip |
Tidy u gfxSem, gfxMutex and various Macros by converting to new types gSem, gMutex etc
Diffstat (limited to 'demos/applications')
-rw-r--r-- | demos/applications/combo/bounce.c | 2 | ||||
-rw-r--r-- | demos/applications/combo/mandelbrot.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/demos/applications/combo/bounce.c b/demos/applications/combo/bounce.c index 7c77e478..4f21ce09 100644 --- a/demos/applications/combo/bounce.c +++ b/demos/applications/combo/bounce.c @@ -62,7 +62,7 @@ static gThread thread; #define FLOORCOLOR HTML2COLOR(0x606060) #define SHADOWALPHA (255-255*0.2) -static DECLARE_THREAD_FUNCTION(task, param) { +static GFX_THREAD_FUNCTION(task, param) { gCoord width, height, x, y, radius, ballx, bally, dx, floor; gCoord minx, miny, maxx, maxy, winx, winy; gCoord ballcx, ballcy; diff --git a/demos/applications/combo/mandelbrot.c b/demos/applications/combo/mandelbrot.c index f70aa356..9e9dc35e 100644 --- a/demos/applications/combo/mandelbrot.c +++ b/demos/applications/combo/mandelbrot.c @@ -66,7 +66,7 @@ static void mandelbrot(float x1, float y1, float x2, float y2) { } } -static DECLARE_THREAD_FUNCTION(task, param) { +static GFX_THREAD_FUNCTION(task, param) { float cx, cy; float zoom = 1.0f; (void) param; |