shader: Address feedback

This commit is contained in:
FernandoS27 2021-04-03 02:34:07 +02:00 committed by ameerj
parent 80df541a08
commit ed6a1b1a3d
3 changed files with 16 additions and 13 deletions

View file

@ -25,7 +25,13 @@ enum class FpRounding : u8 {
RZ, // Round towards zero
};
enum class MemoryScope : u32 { DontCare, Warp, Workgroup, Device, System };
enum class MemoryScope : u32 {
DontCare,
Warp,
Workgroup,
Device,
System,
};
struct FpControl {
bool no_contraction{false};