diff options
author | bunnei <bunneidev@gmail.com> | 2018-03-25 06:09:53 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-03-27 03:17:02 +0200 |
commit | a6cab532f89ada46988e391708eb06b3be5ade19 (patch) | |
tree | c9b826124856fe0816e8ec065612988d2f03cd46 /src/video_core/engines | |
parent | memory: Fix cast for ReadBlock/WriteBlock/ZeroBlock/CopyBlock. (diff) | |
download | yuzu-a6cab532f89ada46988e391708eb06b3be5ade19.tar yuzu-a6cab532f89ada46988e391708eb06b3be5ade19.tar.gz yuzu-a6cab532f89ada46988e391708eb06b3be5ade19.tar.bz2 yuzu-a6cab532f89ada46988e391708eb06b3be5ade19.tar.lz yuzu-a6cab532f89ada46988e391708eb06b3be5ade19.tar.xz yuzu-a6cab532f89ada46988e391708eb06b3be5ade19.tar.zst yuzu-a6cab532f89ada46988e391708eb06b3be5ade19.zip |
Diffstat (limited to 'src/video_core/engines')
-rw-r--r-- | src/video_core/engines/maxwell_3d.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.h b/src/video_core/engines/maxwell_3d.h index 9d63fa803..0e1ae5912 100644 --- a/src/video_core/engines/maxwell_3d.h +++ b/src/video_core/engines/maxwell_3d.h @@ -222,6 +222,10 @@ public: UNREACHABLE(); return {}; } + + bool IsNormalized() const { + return (type == Type::SignedNorm) || (type == Type::UnsignedNorm); + } }; enum class PrimitiveTopology : u32 { |