diff --git a/src/d3d8/d3d8_options.cpp b/src/d3d8/d3d8_options.cpp index 549fcd3cf..ea8dbc65d 100644 --- a/src/d3d8/d3d8_options.cpp +++ b/src/d3d8/d3d8_options.cpp @@ -9,7 +9,7 @@ namespace dxvk { static inline uint32_t parseDword(std::string_view str) { - uint32_t value = UINT32_MAX; + uint32_t value = std::numeric_limits::max(); std::from_chars(str.data(), str.data() + str.size(), value); return value; } diff --git a/src/d3d9/d3d9_adapter.cpp b/src/d3d9/d3d9_adapter.cpp index 713a83650..212cc737a 100644 --- a/src/d3d9/d3d9_adapter.cpp +++ b/src/d3d9/d3d9_adapter.cpp @@ -588,7 +588,7 @@ namespace dxvk { // Max Vertex Shader Const pCaps->MaxVertexShaderConst = MaxFloatConstantsVS; // Max PS1 Value - pCaps->PixelShader1xMaxValue = options.shaderModel > 0 ? FLT_MAX : 0.0f; + pCaps->PixelShader1xMaxValue = options.shaderModel > 0 ? std::numeric_limits::max() : 0.0f; // Dev Caps 2 pCaps->DevCaps2 = D3DDEVCAPS2_STREAMOFFSET /* | D3DDEVCAPS2_DMAPNPATCH */ diff --git a/src/d3d9/d3d9_common_texture.h b/src/d3d9/d3d9_common_texture.h index bba49d65a..378a6ee2d 100644 --- a/src/d3d9/d3d9_common_texture.h +++ b/src/d3d9/d3d9_common_texture.h @@ -75,7 +75,7 @@ namespace dxvk { public: - static constexpr UINT AllLayers = UINT32_MAX; + static constexpr UINT AllLayers = std::numeric_limits::max(); D3D9CommonTexture( D3D9DeviceEx* pDevice, diff --git a/src/d3d9/d3d9_device.cpp b/src/d3d9/d3d9_device.cpp index d2128512b..f43f3d74a 100644 --- a/src/d3d9/d3d9_device.cpp +++ b/src/d3d9/d3d9_device.cpp @@ -1760,7 +1760,7 @@ namespace dxvk { m_state.depthStencil = ds; - UpdateActiveHazardsDS(UINT32_MAX); + UpdateActiveHazardsDS(std::numeric_limits::max()); return D3D_OK; } @@ -2157,7 +2157,7 @@ namespace dxvk { if (m_state.IsLightEnabled(Index) == !!Enable) return D3D_OK; - uint32_t searchIndex = UINT32_MAX; + uint32_t searchIndex = std::numeric_limits::max(); uint32_t setIndex = Index; if (!Enable) @@ -2384,7 +2384,7 @@ namespace dxvk { case D3DRS_ZWRITEENABLE: if (likely(!old != !Value)) - UpdateActiveHazardsDS(UINT32_MAX); + UpdateActiveHazardsDS(std::numeric_limits::max()); [[fallthrough]]; case D3DRS_STENCILENABLE: case D3DRS_ZENABLE: @@ -3795,8 +3795,8 @@ namespace dxvk { if (m_psShaderMasks.samplerMask != newShaderMasks.samplerMask || m_psShaderMasks.rtMask != newShaderMasks.rtMask) { m_psShaderMasks = newShaderMasks; - UpdateActiveHazardsRT(UINT32_MAX); - UpdateActiveHazardsDS(UINT32_MAX); + UpdateActiveHazardsRT(std::numeric_limits::max()); + UpdateActiveHazardsDS(std::numeric_limits::max()); } return D3D_OK; @@ -7815,7 +7815,7 @@ namespace dxvk { if (key.Data.Contents.UseLighting) { for (uint32_t i = 0; i < caps::MaxEnabledLights; i++) { - if (m_state.enabledLightIndices[i] != UINT32_MAX) + if (m_state.enabledLightIndices[i] != std::numeric_limits::max()) lightCount++; } } @@ -7912,7 +7912,7 @@ namespace dxvk { uint32_t lightIdx = 0; for (uint32_t i = 0; i < caps::MaxEnabledLights; i++) { auto idx = m_state.enabledLightIndices[i]; - if (idx == UINT32_MAX) + if (idx == std::numeric_limits::max()) continue; data->Lights[lightIdx++] = D3D9Light(m_state.lights[idx].value(), m_state.transforms[GetTransformIndex(D3DTS_VIEW)]); diff --git a/src/d3d9/d3d9_fixed_function.cpp b/src/d3d9/d3d9_fixed_function.cpp index a47f89cad..0d92b7431 100644 --- a/src/d3d9/d3d9_fixed_function.cpp +++ b/src/d3d9/d3d9_fixed_function.cpp @@ -1297,7 +1297,7 @@ namespace dxvk { uint32_t atten = m_module.opFFma (m_floatType, d, atten2, atten1); atten = m_module.opFFma (m_floatType, d, atten, atten0); atten = m_module.opFDiv (m_floatType, m_module.constf32(1.0f), atten); - atten = m_module.opNMin (m_floatType, atten, m_module.constf32(FLT_MAX)); + atten = m_module.opNMin (m_floatType, atten, m_module.constf32(std::numeric_limits::max())); atten = m_module.opSelect(m_floatType, m_module.opFOrdGreaterThan(bool_t, d, range), m_module.constf32(0.0f), atten); atten = m_module.opSelect(m_floatType, isDirectional, m_module.constf32(1.0f), atten); diff --git a/src/d3d9/d3d9_state.cpp b/src/d3d9/d3d9_state.cpp index af749cf76..6479d2589 100644 --- a/src/d3d9/d3d9_state.cpp +++ b/src/d3d9/d3d9_state.cpp @@ -10,7 +10,7 @@ namespace dxvk { streamFreq[i] = 1; for (uint32_t i = 0; i < enabledLightIndices.size(); i++) - enabledLightIndices[i] = UINT32_MAX; + enabledLightIndices[i] = std::numeric_limits::max(); } diff --git a/src/d3d9/d3d9_stateblock.cpp b/src/d3d9/d3d9_stateblock.cpp index 9998fa94d..8b62c1d58 100644 --- a/src/d3d9/d3d9_stateblock.cpp +++ b/src/d3d9/d3d9_stateblock.cpp @@ -204,7 +204,7 @@ namespace dxvk { if (m_state.IsLightEnabled(Index) == !!Enable) return D3D_OK; - uint32_t searchIndex = UINT32_MAX; + uint32_t searchIndex = std::numeric_limits::max(); uint32_t setIndex = Index; if (!Enable) diff --git a/src/dxso/dxso_compiler.cpp b/src/dxso/dxso_compiler.cpp index d7cdc672f..54c0f0543 100644 --- a/src/dxso/dxso_compiler.cpp +++ b/src/dxso/dxso_compiler.cpp @@ -1957,7 +1957,7 @@ namespace dxvk { if (m_moduleInfo.options.d3d9FloatEmulation == D3D9FloatEmulation::Enabled) { result.id = m_module.opNMin(typeId, result.id, - m_module.constfReplicant(FLT_MAX, result.type.ccount)); + m_module.constfReplicant(std::numeric_limits::max(), result.type.ccount)); } break; case DxsoOpcode::Rsq: @@ -1969,7 +1969,7 @@ namespace dxvk { if (m_moduleInfo.options.d3d9FloatEmulation == D3D9FloatEmulation::Enabled) { result.id = m_module.opNMin(typeId, result.id, - m_module.constfReplicant(FLT_MAX, result.type.ccount)); + m_module.constfReplicant(std::numeric_limits::max(), result.type.ccount)); } break; case DxsoOpcode::Dp3: { @@ -2029,7 +2029,7 @@ namespace dxvk { if (m_moduleInfo.options.d3d9FloatEmulation == D3D9FloatEmulation::Enabled) { result.id = m_module.opNMin(typeId, result.id, - m_module.constfReplicant(FLT_MAX, result.type.ccount)); + m_module.constfReplicant(std::numeric_limits::max(), result.type.ccount)); } break; } @@ -2040,7 +2040,7 @@ namespace dxvk { if (m_moduleInfo.options.d3d9FloatEmulation == D3D9FloatEmulation::Enabled) { result.id = m_module.opNMin(typeId, result.id, - m_module.constfReplicant(FLT_MAX, result.type.ccount)); + m_module.constfReplicant(std::numeric_limits::max(), result.type.ccount)); } break; case DxsoOpcode::Pow: { @@ -2102,7 +2102,7 @@ namespace dxvk { rcpLength.type = scalarType; rcpLength.id = m_module.opInverseSqrt(scalarTypeId, dot.id); if (m_moduleInfo.options.d3d9FloatEmulation == D3D9FloatEmulation::Enabled) { - rcpLength.id = m_module.opNMin(scalarTypeId, rcpLength.id, m_module.constf32(FLT_MAX)); + rcpLength.id = m_module.opNMin(scalarTypeId, rcpLength.id, m_module.constf32(std::numeric_limits::max())); } // r * rsq(r . r) @@ -2216,7 +2216,7 @@ namespace dxvk { result.id = m_module.opLog2(typeId, result.id); if (m_moduleInfo.options.d3d9FloatEmulation == D3D9FloatEmulation::Enabled) { result.id = m_module.opNMax(typeId, result.id, - m_module.constfReplicant(-FLT_MAX, result.type.ccount)); + m_module.constfReplicant(-std::numeric_limits::max(), result.type.ccount)); } break; case DxsoOpcode::Lrp: diff --git a/src/dxso/dxso_tables.cpp b/src/dxso/dxso_tables.cpp index 5b8ab91f0..df79a970a 100644 --- a/src/dxso/dxso_tables.cpp +++ b/src/dxso/dxso_tables.cpp @@ -86,7 +86,7 @@ namespace dxvk { case DxsoOpcode::SetP: return 3; case DxsoOpcode::TexLdl: return 3; case DxsoOpcode::BreakP: return 2; - default: Logger::warn("DxsoGetDefaultOpcodeLength: unknown opcode to get default length for."); return UINT32_MAX; + default: Logger::warn("DxsoGetDefaultOpcodeLength: unknown opcode to get default length for."); return std::numeric_limits::max(); } } diff --git a/src/dxso/dxso_tables.h b/src/dxso/dxso_tables.h index 73e3801d3..19b94f63b 100644 --- a/src/dxso/dxso_tables.h +++ b/src/dxso/dxso_tables.h @@ -4,7 +4,7 @@ namespace dxvk { - constexpr uint32_t InvalidOpcodeLength = UINT32_MAX; + constexpr uint32_t InvalidOpcodeLength = std::numeric_limits::max(); uint32_t DxsoGetDefaultOpcodeLength(DxsoOpcode opcode);