GsOT_TAG

Ordering table element

struct GsOT_TAG {
        unsigned p : 24;
        u_char num : 8;
};

Members

p Pointer to next item in ordering table list
num Number of words in current GPU packet (i.e. primitive)

Explanation

An ordering table is a linked list of GsOT_TAG structures and various types of GPU primitive structures.
p indicates the least significant 24-bits of a pointer to the next item in the list. A value of 0xFFFFFF indicates the end of the list.
The GsOT structure is used to manage an array of GsOT_TAG structures.
Memory should be allocated for the GsOT_TAG structures after the GsOT structure is initialized.