Browse Source

comment

Signed-off-by: lizzie <lizzie@eden-emu.dev>
pull/2868/head
lizzie 3 months ago
committed by crueter
parent
commit
2f7dc3065b
  1. 5
      src/shader_recompiler/frontend/maxwell/translate/impl/surface_atomic_operations.cpp

5
src/shader_recompiler/frontend/maxwell/translate/impl/surface_atomic_operations.cpp

@ -22,13 +22,16 @@ enum class Type : u64 {
_UNK7 = 7, _UNK7 = 7,
}; };
/// For any would be newcomer to here: Yes - GPU dissasembly says S64 should
/// be after F16x2FTZRN. However if you do plan to revert this, you MUST test
/// ToTK beforehand. As the game will break with the subtle change
enum class Size : u64 { enum class Size : u64 {
U32, U32,
S32, S32,
U64, U64,
S64,
F32FTZRN, F32FTZRN,
F16x2FTZRN, F16x2FTZRN,
S64,
SD32, SD32,
SD64, SD64,
}; };

Loading…
Cancel
Save