whitespaces

ugfx_release_2.6
Joel Bodenmann 2013-12-18 22:11:46 +01:00
parent 9ab3497c7e
commit 5553e3eb54
1 changed files with 10 additions and 6 deletions

View File

@ -38,17 +38,19 @@
typedef struct gfxQueueASync { typedef struct gfxQueueASync {
struct gfxQueueASyncItem *head; struct gfxQueueASyncItem *head;
struct gfxQueueASyncItem *tail; struct gfxQueueASyncItem *tail;
} gfxQueueASync; } gfxQueueASync;
typedef struct gfxQueueGSync { typedef struct gfxQueueGSync {
struct gfxQueueGSyncItem *head; struct gfxQueueGSyncItem *head;
struct gfxQueueGSyncItem *tail; struct gfxQueueGSyncItem *tail;
gfxSem sem; gfxSem sem;
} gfxQueueGSync; } gfxQueueGSync;
typedef struct gfxQueueFSync { typedef struct gfxQueueFSync {
struct gfxQueueFSyncItem *head; struct gfxQueueFSyncItem *head;
struct gfxQueueFSyncItem *tail; struct gfxQueueFSyncItem *tail;
gfxSem sem; gfxSem sem;
} gfxQueueFSync; } gfxQueueFSync;
/* @} */ /* @} */
/** /**
@ -57,14 +59,16 @@ typedef struct gfxQueueFSync {
*/ */
typedef struct gfxQueueASyncItem { typedef struct gfxQueueASyncItem {
struct gfxQueueASyncItem *next; struct gfxQueueASyncItem *next;
} gfxQueueASyncItem; } gfxQueueASyncItem;
typedef struct gfxQueueGSyncItem { typedef struct gfxQueueGSyncItem {
struct gfxQueueGSyncItem *next; struct gfxQueueGSyncItem *next;
} gfxQueueGSyncItem; } gfxQueueGSyncItem;
typedef struct gfxQueueFSyncItem { typedef struct gfxQueueFSyncItem {
struct gfxQueueFSyncItem *next; struct gfxQueueFSyncItem *next;
gfxSem sem; gfxSem sem;
} gfxQueueFSyncItem; } gfxQueueFSyncItem;
/* @} */ /* @} */