whitespaces
This commit is contained in:
parent
9ab3497c7e
commit
5553e3eb54
1 changed files with 10 additions and 6 deletions
|
@ -38,17 +38,19 @@
|
|||
typedef struct gfxQueueASync {
|
||||
struct gfxQueueASyncItem *head;
|
||||
struct gfxQueueASyncItem *tail;
|
||||
} gfxQueueASync;
|
||||
} gfxQueueASync;
|
||||
|
||||
typedef struct gfxQueueGSync {
|
||||
struct gfxQueueGSyncItem *head;
|
||||
struct gfxQueueGSyncItem *tail;
|
||||
gfxSem sem;
|
||||
} gfxQueueGSync;
|
||||
} gfxQueueGSync;
|
||||
|
||||
typedef struct gfxQueueFSync {
|
||||
struct gfxQueueFSyncItem *head;
|
||||
struct gfxQueueFSyncItem *tail;
|
||||
gfxSem sem;
|
||||
} gfxQueueFSync;
|
||||
} gfxQueueFSync;
|
||||
/* @} */
|
||||
|
||||
/**
|
||||
|
@ -57,14 +59,16 @@ typedef struct gfxQueueFSync {
|
|||
*/
|
||||
typedef struct gfxQueueASyncItem {
|
||||
struct gfxQueueASyncItem *next;
|
||||
} gfxQueueASyncItem;
|
||||
} gfxQueueASyncItem;
|
||||
|
||||
typedef struct gfxQueueGSyncItem {
|
||||
struct gfxQueueGSyncItem *next;
|
||||
} gfxQueueGSyncItem;
|
||||
} gfxQueueGSyncItem;
|
||||
|
||||
typedef struct gfxQueueFSyncItem {
|
||||
struct gfxQueueFSyncItem *next;
|
||||
gfxSem sem;
|
||||
} gfxQueueFSyncItem;
|
||||
} gfxQueueFSyncItem;
|
||||
/* @} */
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue