diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2021-03-27 02:55:37 -0300 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:24 -0400 |
commit | f0031babeb3ed04aef2468840aa37f4da13b2524 (patch) | |
tree | a92a4009b4405325d78731fd31abb9ca626ba5ef /src/shader_recompiler/shader_info.h | |
parent | a806b29cb9bb48c4a9628700946231c9150463b5 (diff) |
shader: Implement front face
Diffstat (limited to 'src/shader_recompiler/shader_info.h')
-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 27e61a5f96..8ab66bb2ab 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h @@ -62,6 +62,7 @@ struct Info { bool loads_position{}; bool loads_instance_id{}; bool loads_vertex_id{}; + bool loads_front_face{}; std::array<bool, 8> stores_frag_color{}; bool stores_frag_depth{}; |