aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi
diff options
context:
space:
mode:
authorKarol Herbst <[email protected]>2017-06-23 20:30:20 +0200
committerIlia Mirkin <[email protected]>2017-07-21 23:45:18 -0400
commitaf22adee4fcd0a5d0d63a0048b3d156eb2abb135 (patch)
tree6ba32ee226748b7c89dc301818b9b9ac1d144e5a /src/gallium/auxiliary/tgsi
parent30d6bc470a1a75ead8afa08a90ad96a50331f1cd (diff)
tgsi: add precise flag to tgsi_instruction
Signed-off-by: Karol Herbst <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]> Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/tgsi')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_build.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_build.c b/src/gallium/auxiliary/tgsi/tgsi_build.c
index 00843241f88..55e4d064edc 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_build.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_build.c
@@ -642,6 +642,7 @@ tgsi_default_instruction( void )
instruction.Label = 0;
instruction.Texture = 0;
instruction.Memory = 0;
+ instruction.Precise = 0;
instruction.Padding = 0;
return instruction;