1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-10 16:26:32 -05:00

gl_rasterizer: Normalize vertex array data as appropriate.

This commit is contained in:
bunnei
2018-03-25 00:09:53 -04:00
parent d4fb8a887c
commit a6cab532f8
2 changed files with 5 additions and 1 deletions

View File

@@ -222,6 +222,10 @@ public:
UNREACHABLE();
return {};
}
bool IsNormalized() const {
return (type == Type::SignedNorm) || (type == Type::UnsignedNorm);
}
};
enum class PrimitiveTopology : u32 {