Index Word
|
Description
|
0x0
|
Base physical address >> 3, normally located in VRAM. The address must be aligned to a 16-byte boundary.
|
0x1
|
Every 4 bits is used for specifying the array data-type and size for each entry.
|
0x2
|
Value is: (0xF0000000 + (val<<28)) | ((attrib_mask & 0xFFF)<<16), where val is the total 4-bit value entries for the command 0x801F02BB parameter buffer.(Normally val is 8); attrib_mask is usually (0xFFF<<totalentries)
|
0x3-0x26
|
12 entries, each entry is 3 words.
|
These parameters and the entries' parameters are set by gl*Pointer().
Entry structure
Index Word
|
Description
|
0
|
Physical address, relative to the base address.
|
1
|
Entry attribute permutation (lower 8 bytes)
|
2
|
Value is: ((numattrib)<<28 | (stride<<16) | ((attrib_permuation>>32)&0xFFFF). (stride in bytes)
|
A given entry corresponds to a buffer, but a single buffer may contain attributes of multiple different interlaced attributes, hence the attribute permutation parameter which lists the various attributes that can be found in the buffer, and in which order. If stride doesn't exactly match the format, the GPU may hang.
When the entry is unused, the entry data is all-zero.
Array data-type/size values
Value
|
GL type
|
0x0 + ((size-1)*4)
|
GL_BYTE
|
0x1 + ((size-1)*4)
|
GL_UNSIGNED_BYTE
|
0x2 + ((size-1)*4)
|
GL_UNSIGNED_SHORT/GL_SHORT
|
0x3 + ((size-1)*4)
|
GL_FLOAT
|
Size is 1-4. Using GL_FLOAT with a texture coordinates array causes the GPU to hang?
Index Word
|
Description
|
0
|
Entry index + total command 0x0200 parameter-buffer entries.
|
1
|
Unknown, usually value 0x3F000000 / 0.5f.(u32 read/writes are used for this field, not float read/writes however)
|
2
|
Unknown, usually value 0.
|
3
|
Unknown, usually value 0.
|
Each parameter buffer for command 0x0232 is an entry loaded from an array.
4 float24 values ?