whitespaces
This commit is contained in:
parent
9ab3497c7e
commit
5553e3eb54
1 changed files with 10 additions and 6 deletions
|
@ -39,11 +39,13 @@ 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;
|
||||||
|
@ -58,9 +60,11 @@ 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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue