search for: aa0fb3e3b3

Displaying 2 results from an estimated 2 matches for "aa0fb3e3b3".

2017 Jun 11
0
[RFC 1/9] tgsi: add precise flag to tgsi_instruction
...tion( void ) instruction.Label = 0; instruction.Texture = 0; instruction.Memory = 0; + instruction.Precise = 0; instruction.Padding = 0; return instruction; diff --git a/src/gallium/include/pipe/p_shader_tokens.h b/src/gallium/include/pipe/p_shader_tokens.h index 1e08d97329..aa0fb3e3b3 100644 --- a/src/gallium/include/pipe/p_shader_tokens.h +++ b/src/gallium/include/pipe/p_shader_tokens.h @@ -638,7 +638,8 @@ struct tgsi_instruction unsigned Label : 1; unsigned Texture : 1; unsigned Memory : 1; - unsigned Padding : 2; + unsigned Precise : 1; + u...
2017 Jun 11
14
[RFC 0/9] Add precise/invariant semantics to TGSI
Running Tomb Raider on Nouveau I found some flicker caused by ignoring precise modifiers on variables inside Nouveau. This series add precise/invariant handling to TGSI, which can be then used by drivers to disable certain unsafe optimisations which may otherwise alter calculations, which depend on having the same result across shaders. This series fixes this bug in Tomb Raider and one CTS test