diff options
author | Neil Roberts <[email protected]> | 2018-01-25 19:15:39 +0100 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2018-04-19 15:57:45 -0700 |
commit | 0c8395e15d295d328f68574e71afaf04596e2a82 (patch) | |
tree | 07f97fdcb5ea91c678ef07642c4398759ed47e09 /src/intel/compiler/brw_compiler.h | |
parent | 5ff848df7be34bdc4c2e0ad509ad43b4ae1fc3b9 (diff) |
intel/compiler: Add a uses_firstvertex flag
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/intel/compiler/brw_compiler.h')
-rw-r--r-- | src/intel/compiler/brw_compiler.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/compiler/brw_compiler.h b/src/intel/compiler/brw_compiler.h index 875b2936fd8..24196248b8e 100644 --- a/src/intel/compiler/brw_compiler.h +++ b/src/intel/compiler/brw_compiler.h @@ -978,6 +978,7 @@ struct brw_vs_prog_data { bool uses_vertexid; bool uses_instanceid; bool uses_basevertex; + bool uses_firstvertex; bool uses_baseinstance; bool uses_drawid; }; |