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:25:55 -0600 |
commit | 5e6d21afa4efe033e27b980cc26266c3db6d9021 (patch) | |
tree | f4ceab854c545e6c4bc70fc7f1a8779027030be4 /src/gallium/auxiliary/tgsi/tgsi_build.c | |
parent | 3097d7dbf8b6acd2e5f4fd2adf45c5fb85f73952 (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 d272533d63..94d9c638e1 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_build.c +++ b/src/gallium/auxiliary/tgsi/tgsi_build.c @@ -477,6 +477,8 @@ tgsi_default_full_instruction( void ) full_instruction.FullSrcRegisters[i] = tgsi_default_full_src_register(); } + full_instruction.Flags = 0x0; + return full_instruction; } |