diff options
| author | 2021-04-16 01:55:06 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:27 -0400 | |
| commit | b0f1255c8cb800e9f336be66b3f16c3d958673d2 (patch) | |
| tree | d5c63390c37b32b8ef188b6ce2db9111a9585661 /src/shader_recompiler/shader_info.h | |
| parent | shader: Implement tessellation shaders, polygon mode and invocation id (diff) | |
| download | yuzu-b0f1255c8cb800e9f336be66b3f16c3d958673d2.tar.gz yuzu-b0f1255c8cb800e9f336be66b3f16c3d958673d2.tar.xz yuzu-b0f1255c8cb800e9f336be66b3f16c3d958673d2.zip | |
shader: Implement PrimitiveId
Diffstat (limited to '')
| -rw-r--r-- | src/shader_recompiler/shader_info.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index 4dbf9ed12..d6cde1596 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h | |||
| @@ -107,6 +107,7 @@ struct Info { | |||
| 107 | std::array<bool, 30> uses_patches{}; | 107 | std::array<bool, 30> uses_patches{}; |
| 108 | 108 | ||
| 109 | std::array<InputVarying, 32> input_generics{}; | 109 | std::array<InputVarying, 32> input_generics{}; |
| 110 | bool loads_primitive_id{}; | ||
| 110 | bool loads_position{}; | 111 | bool loads_position{}; |
| 111 | bool loads_instance_id{}; | 112 | bool loads_instance_id{}; |
| 112 | bool loads_vertex_id{}; | 113 | bool loads_vertex_id{}; |