diff options
| author | Brian Paul <brianp@vmware.com> | 2009-08-20 10:25:42 -0600 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2009-08-20 10:51:55 -0600 | 
| commit | fffcecc4d93253b077479d5f550a8fc5c20e54cd (patch) | |
| tree | 00188213642c70d57eaeac48284aa9c85800b505 /src | |
| parent | 0f0a9e3ee752f1746d6dba748522fb3e15e4af1a (diff) | |
tgsi: added tgsi_full_instruction::Flags field
Users of the parser can make use of this.
Diffstat (limited to 'src')
| -rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_build.c | 2 | ||||
| -rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_parse.h | 1 | 
2 files changed, 3 insertions, 0 deletions
| diff --git a/src/gallium/auxiliary/tgsi/tgsi_build.c b/src/gallium/auxiliary/tgsi/tgsi_build.c index 010d501c60..e0cfc54420 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_build.c +++ b/src/gallium/auxiliary/tgsi/tgsi_build.c @@ -482,6 +482,8 @@ tgsi_default_full_instruction( void )        full_instruction.FullSrcRegisters[i] = tgsi_default_full_src_register();     } +   full_instruction.Flags = 0x0; +     return full_instruction;  } diff --git a/src/gallium/auxiliary/tgsi/tgsi_parse.h b/src/gallium/auxiliary/tgsi/tgsi_parse.h index 1035bda1a8..a26ee5ba86 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_parse.h +++ b/src/gallium/auxiliary/tgsi/tgsi_parse.h @@ -87,6 +87,7 @@ struct tgsi_full_instruction     struct tgsi_instruction_ext_texture InstructionExtTexture;     struct tgsi_full_dst_register       FullDstRegisters[TGSI_FULL_MAX_DST_REGISTERS];     struct tgsi_full_src_register       FullSrcRegisters[TGSI_FULL_MAX_SRC_REGISTERS]; +   uint Flags;  /**< user-defined usage */  };  union tgsi_full_token | 
