diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-05-31 09:19:31 +0200 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-23 03:51:34 +0200 |
commit | ac0f5d2ab6cf0843c9ac6179b52b1e069a78069e (patch) | |
tree | f4de2a95a6987a74c6c8801bea35290eb40103ba /src/shader_recompiler/shader_info.h | |
parent | shader: Add support for "negative" and unaligned offsets (diff) | |
download | yuzu-ac0f5d2ab6cf0843c9ac6179b52b1e069a78069e.tar yuzu-ac0f5d2ab6cf0843c9ac6179b52b1e069a78069e.tar.gz yuzu-ac0f5d2ab6cf0843c9ac6179b52b1e069a78069e.tar.bz2 yuzu-ac0f5d2ab6cf0843c9ac6179b52b1e069a78069e.tar.lz yuzu-ac0f5d2ab6cf0843c9ac6179b52b1e069a78069e.tar.xz yuzu-ac0f5d2ab6cf0843c9ac6179b52b1e069a78069e.tar.zst yuzu-ac0f5d2ab6cf0843c9ac6179b52b1e069a78069e.zip |
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
-rw-r--r-- | src/shader_recompiler/shader_info.h | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/src/shader_recompiler/shader_info.h b/src/shader_recompiler/shader_info.h index d6c32fbe5..b60ba0457 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h @@ -122,26 +122,39 @@ struct Info { std::array<InputVarying, 32> input_generics{}; bool loads_primitive_id{}; bool loads_position{}; + bool loads_color_front_diffuse{}; + bool loads_point_coord{}; bool loads_instance_id{}; bool loads_vertex_id{}; bool loads_front_face{}; - bool loads_point_coord{}; + bool loads_tess_coord{}; + bool loads_indexed_attributes{}; std::array<bool, 8> stores_frag_color{}; bool stores_sample_mask{}; bool stores_frag_depth{}; + std::array<bool, 32> stores_generics{}; - bool stores_position{}; - bool stores_point_size{}; - bool stores_clip_distance{}; bool stores_layer{}; bool stores_viewport_index{}; + bool stores_point_size{}; + bool stores_position{}; + bool stores_color_front_diffuse{}; + bool stores_color_front_specular{}; + bool stores_color_back_diffuse{}; + bool stores_color_back_specular{}; + bool stores_fixed_fnc_textures{}; + bool stores_clip_distance{}; + bool stores_fog_coordinate{}; bool stores_viewport_mask{}; + bool stores_tess_level_outer{}; bool stores_tess_level_inner{}; + bool stores_indexed_attributes{}; + bool stores_global_memory{}; bool uses_fp16{}; |