GPU: Added more fields to the TIC structure.
This commit is contained in:
parent
8c8da93693
commit
6afe9e0105
|
@ -17,11 +17,32 @@ enum class TextureFormat : u32 {
|
||||||
DXT1 = 0x24,
|
DXT1 = 0x24,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum class TextureType : u32 {
|
||||||
|
Texture1D = 0,
|
||||||
|
Texture2D = 1,
|
||||||
|
Texture3D = 2,
|
||||||
|
TextureCubemap = 3,
|
||||||
|
Texture1DArray = 4,
|
||||||
|
Texture2DArray = 5,
|
||||||
|
Texture1DBuffer = 6,
|
||||||
|
Texture2DNoMipmap = 7,
|
||||||
|
TextureCubeArray = 8,
|
||||||
|
};
|
||||||
|
|
||||||
|
enum class TICHeaderVersion : u32 {
|
||||||
|
OneDBuffer = 0,
|
||||||
|
PitchColorKey = 1,
|
||||||
|
Pitch = 2,
|
||||||
|
BlockLinear = 3,
|
||||||
|
BlockLinearColorKey = 4,
|
||||||
|
};
|
||||||
|
|
||||||
union TextureHandle {
|
union TextureHandle {
|
||||||
u32 raw;
|
u32 raw;
|
||||||
BitField<0, 20, u32> tic_id;
|
BitField<0, 20, u32> tic_id;
|
||||||
BitField<20, 12, u32> tsc_id;
|
BitField<20, 12, u32> tsc_id;
|
||||||
};
|
};
|
||||||
|
static_assert(sizeof(TextureHandle) == 4, "TextureHandle has wrong size");
|
||||||
|
|
||||||
struct TICEntry {
|
struct TICEntry {
|
||||||
union {
|
union {
|
||||||
|
@ -33,10 +54,15 @@ struct TICEntry {
|
||||||
BitField<16, 3, u32> a_type;
|
BitField<16, 3, u32> a_type;
|
||||||
};
|
};
|
||||||
u32 address_low;
|
u32 address_low;
|
||||||
u16 address_high;
|
union {
|
||||||
INSERT_PADDING_BYTES(6);
|
BitField<0, 16, u32> address_high;
|
||||||
u16 width_minus_1;
|
BitField<21, 3, TICHeaderVersion> header_version;
|
||||||
INSERT_PADDING_BYTES(2);
|
};
|
||||||
|
INSERT_PADDING_BYTES(4);
|
||||||
|
union {
|
||||||
|
BitField<0, 16, u32> width_minus_1;
|
||||||
|
BitField<23, 4, TextureType> texture_type;
|
||||||
|
};
|
||||||
u16 height_minus_1;
|
u16 height_minus_1;
|
||||||
INSERT_PADDING_BYTES(10);
|
INSERT_PADDING_BYTES(10);
|
||||||
|
|
||||||
|
|
Reference in New Issue