[D3D12] Minor RT code style/comments cleanup

This commit is contained in:
Triang3l
2022-03-22 21:48:26 +03:00
parent ee8e71cea8
commit 32ab1a2df1
4 changed files with 151 additions and 146 deletions

View File

@@ -3140,7 +3140,7 @@ void DxbcShaderTranslator::PreClampedFloat32To7e3(
// https://github.com/Microsoft/DirectXTex/blob/master/DirectXTex/DirectXTexConvert.cpp
// Assuming the color is already clamped to [0, 31.875].
// Check if the number is too small to be represented as normalized 20e4.
// Check if the number is too small to be represented as normalized 7e3.
// temp = f32 < 2^-2
a.OpULT(temp_dest, f32_src, dxbc::Src::LU(0x3E800000));
// Handle denormalized numbers separately.