diff options
author | Brian Paul <[email protected]> | 2009-08-20 10:25:42 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-08-20 10:51:55 -0600 |
commit | fffcecc4d93253b077479d5f550a8fc5c20e54cd (patch) | |
tree | 00188213642c70d57eaeac48284aa9c85800b505 /src/gallium/auxiliary/tgsi/tgsi_build.c | |
parent | 0f0a9e3ee752f1746d6dba748522fb3e15e4af1a (diff) |
tgsi: added tgsi_full_instruction::Flags field
Users of the parser can make use of this.
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_build.c')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_build.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_build.c b/src/gallium/auxiliary/tgsi/tgsi_build.c index 010d501c601..e0cfc54420e 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; } |