diff options
author | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-03-26 18:52:06 -0400 |
---|---|---|
committer | ameerj <52414509+ameerj@users.noreply.github.com> | 2021-07-22 21:51:25 -0400 |
commit | b7589fe1154d9e810e83f6c609dad1d646ec0359 (patch) | |
tree | f8b79ef7529b80f0322b0d84a88e3a7df225e3f0 /src/shader_recompiler/shader_info.h | |
parent | 514a6b07eedace58b4a0c95282bdfc729623d1d9 (diff) |
shader: Add PointSize attribute
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 4b4006b7f8..3d8e089094 100644 --- a/src/shader_recompiler/shader_info.h +++ b/src/shader_recompiler/shader_info.h @@ -79,6 +79,7 @@ struct Info { bool stores_frag_depth{}; std::array<bool, 32> stores_generics{}; bool stores_position{}; + bool stores_point_size{}; bool uses_fp16{}; bool uses_fp64{}; |