mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-04 21:10:31 +01:00
gallium: Add signed/unsigned int immediate data types.
This commit is contained in:
parent
bf4b4c1b6f
commit
b1c55e80aa
1 changed files with 4 additions and 0 deletions
|
|
@ -141,6 +141,8 @@ struct tgsi_declaration_semantic
|
|||
};
|
||||
|
||||
#define TGSI_IMM_FLOAT32 0
|
||||
#define TGSI_IMM_UINT32 1
|
||||
#define TGSI_IMM_INT32 2
|
||||
|
||||
struct tgsi_immediate
|
||||
{
|
||||
|
|
@ -153,6 +155,8 @@ struct tgsi_immediate
|
|||
union tgsi_immediate_data
|
||||
{
|
||||
float Float;
|
||||
unsigned Uint;
|
||||
int Int;
|
||||
};
|
||||
|
||||
#define TGSI_PROPERTY_GS_INPUT_PRIM 0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue