mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
VideoCommon: Add support for unrestricted depth range.
This commit is contained in:
parent
7db13d23c9
commit
9f9b1752cb
2
Externals/Vulkan-Headers
vendored
2
Externals/Vulkan-Headers
vendored
@ -1 +1 @@
|
||||
Subproject commit 05fe2cc910a68c9ba5dac07db46ef78573acee72
|
||||
Subproject commit 29f979ee5aa58b7b005f805ea8df7a855c39ff37
|
@ -116,6 +116,7 @@ void VideoBackend::FillBackendInfo()
|
||||
g_Config.backend_info.bSupportsPartialMultisampleResolve = true;
|
||||
g_Config.backend_info.bSupportsDynamicVertexLoader = false;
|
||||
g_Config.backend_info.bSupportsHDROutput = true;
|
||||
g_Config.backend_info.bSupportsUnrestrictedDepthRange = false;
|
||||
|
||||
g_Config.backend_info.Adapters = D3DCommon::GetAdapterNames();
|
||||
g_Config.backend_info.AAModes = D3D::GetAAModes(g_Config.iAdapter);
|
||||
|
@ -91,6 +91,7 @@ void VideoBackend::FillBackendInfo()
|
||||
g_Config.backend_info.bSupportsDynamicVertexLoader = true;
|
||||
g_Config.backend_info.bSupportsVSLinePointExpand = true;
|
||||
g_Config.backend_info.bSupportsHDROutput = true;
|
||||
g_Config.backend_info.bSupportsUnrestrictedDepthRange = false;
|
||||
|
||||
// We can only check texture support once we have a device.
|
||||
if (g_dx_context)
|
||||
|
@ -79,6 +79,7 @@ void Metal::Util::PopulateBackendInfo(VideoConfig* config)
|
||||
config->backend_info.bSupportsVSLinePointExpand = true;
|
||||
config->backend_info.bSupportsHDROutput =
|
||||
1.0 < [[NSScreen deepestScreen] maximumPotentialExtendedDynamicRangeColorComponentValue];
|
||||
config->backend_info.bSupportsUnrestrictedDepthRange = false;
|
||||
}
|
||||
|
||||
void Metal::Util::PopulateBackendInfoAdapters(VideoConfig* config,
|
||||
|
@ -63,6 +63,7 @@ void VideoBackend::InitBackendInfo(const WindowSystemInfo& wsi)
|
||||
g_Config.backend_info.bSupportsSettingObjectNames = false;
|
||||
g_Config.backend_info.bSupportsPartialMultisampleResolve = true;
|
||||
g_Config.backend_info.bSupportsDynamicVertexLoader = false;
|
||||
g_Config.backend_info.bSupportsUnrestrictedDepthRange = false;
|
||||
|
||||
// aamodes: We only support 1 sample, so no MSAA
|
||||
g_Config.backend_info.Adapters.clear();
|
||||
|
@ -135,6 +135,7 @@ bool VideoBackend::FillBackendInfo(GLContext* context)
|
||||
g_Config.backend_info.bSupportsPartialMultisampleResolve = true;
|
||||
// Unneccessary since OGL doesn't use pipelines
|
||||
g_Config.backend_info.bSupportsDynamicVertexLoader = false;
|
||||
g_Config.backend_info.bSupportsUnrestrictedDepthRange = false;
|
||||
|
||||
// TODO: There is a bug here, if texel buffers or SSBOs/atomics are not supported the graphics
|
||||
// options will show the option when it is not supported. The only way around this would be
|
||||
|
@ -117,7 +117,9 @@ void VKGfx::ClearRegion(const MathUtil::Rectangle<int>& target_rc, bool color_en
|
||||
clear_color_value.color.float32[1] = static_cast<float>((color >> 8) & 0xFF) / 255.0f;
|
||||
clear_color_value.color.float32[2] = static_cast<float>((color >> 0) & 0xFF) / 255.0f;
|
||||
clear_color_value.color.float32[3] = static_cast<float>((color >> 24) & 0xFF) / 255.0f;
|
||||
clear_depth_value.depthStencil.depth = static_cast<float>(z & 0xFFFFFF) / 16777216.0f;
|
||||
clear_depth_value.depthStencil.depth = static_cast<float>(z & 0xFFFFFF);
|
||||
if (!g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange)
|
||||
clear_depth_value.depthStencil.depth /= 16777216.0f;
|
||||
if (!g_ActiveConfig.backend_info.bSupportsReversedDepthRange)
|
||||
clear_depth_value.depthStencil.depth = 1.0f - clear_depth_value.depthStencil.depth;
|
||||
|
||||
|
@ -368,12 +368,19 @@ std::unique_ptr<VKPipeline> VKPipeline::Create(const AbstractPipelineConfig& con
|
||||
GetVulkanColorBlendState(config.blending_state, blend_attachment_states.data(),
|
||||
static_cast<uint32_t>(blend_attachment_states.size()));
|
||||
|
||||
static const VkDepthClampRangeEXT clamp_range = {0.0f, 16777215.0f};
|
||||
static const VkPipelineViewportDepthClampControlCreateInfoEXT depth_clamp_state = {
|
||||
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_DEPTH_CLAMP_CONTROL_CREATE_INFO_EXT, nullptr,
|
||||
VK_DEPTH_CLAMP_MODE_USER_DEFINED_RANGE_EXT, // VkDepthClampModeEXT depthClampMode
|
||||
&clamp_range // const VkDepthClampRangeEXT* pDepthClampRange
|
||||
};
|
||||
|
||||
// This viewport isn't used, but needs to be specified anyway.
|
||||
static const VkViewport viewport = {0.0f, 0.0f, 1.0f, 1.0f, 0.0f, 1.0f};
|
||||
static const VkRect2D scissor = {{0, 0}, {1, 1}};
|
||||
static const VkPipelineViewportStateCreateInfo viewport_state = {
|
||||
VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO,
|
||||
nullptr,
|
||||
&depth_clamp_state,
|
||||
0, // VkPipelineViewportStateCreateFlags flags;
|
||||
1, // uint32_t viewportCount
|
||||
&viewport, // const VkViewport* pViewports
|
||||
|
@ -471,6 +471,7 @@ void VulkanContext::PopulateBackendInfo(VideoConfig* config)
|
||||
config->backend_info.bSupportsDynamicVertexLoader = true; // Assumed support.
|
||||
config->backend_info.bSupportsVSLinePointExpand = true; // Assumed support.
|
||||
config->backend_info.bSupportsHDROutput = true; // Assumed support.
|
||||
config->backend_info.bSupportsUnrestrictedDepthRange = false; // Dependent on features.
|
||||
}
|
||||
|
||||
void VulkanContext::PopulateBackendInfoAdapters(VideoConfig* config, const GPUList& gpu_list)
|
||||
@ -676,6 +677,13 @@ bool VulkanContext::SelectDeviceExtensions(bool enable_surface)
|
||||
AddExtension(VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME, false);
|
||||
AddExtension(VK_EXT_MEMORY_BUDGET_EXTENSION_NAME, false);
|
||||
|
||||
// Enabling the depth clamp control extension is harmless, but we need to ensure
|
||||
// we don't enable the unrestricted depth range extension unless we can actually
|
||||
// make use of it.
|
||||
g_Config.backend_info.bSupportsUnrestrictedDepthRange =
|
||||
AddExtension(VK_EXT_DEPTH_CLAMP_CONTROL_EXTENSION_NAME, false) &&
|
||||
AddExtension(VK_EXT_DEPTH_RANGE_UNRESTRICTED_EXTENSION_NAME, false);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -75,7 +75,9 @@ void AbstractGfx::ClearRegion(const MathUtil::Rectangle<int>& target_rc, bool co
|
||||
static_cast<float>((color >> 8) & 0xFF) / 255.0f,
|
||||
static_cast<float>((color >> 0) & 0xFF) / 255.0f,
|
||||
static_cast<float>((color >> 24) & 0xFF) / 255.0f},
|
||||
static_cast<float>(z & 0xFFFFFF) / 16777216.0f};
|
||||
static_cast<float>(z & 0xFFFFFF)};
|
||||
if (!g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange)
|
||||
uniforms.clear_depth = uniforms.clear_depth / 16777216.0f;
|
||||
if (!g_ActiveConfig.backend_info.bSupportsReversedDepthRange)
|
||||
uniforms.clear_depth = 1.0f - uniforms.clear_depth;
|
||||
g_vertex_manager->UploadUtilityUniforms(&uniforms, sizeof(uniforms));
|
||||
|
@ -203,8 +203,8 @@ void SetScissorAndViewport()
|
||||
float y = g_framebuffer_manager->EFBToScaledYf(raw_y);
|
||||
float width = g_framebuffer_manager->EFBToScaledXf(raw_width);
|
||||
float height = g_framebuffer_manager->EFBToScaledYf(raw_height);
|
||||
float min_depth = (xfmem.viewport.farZ - xfmem.viewport.zRange) / 16777216.0f;
|
||||
float max_depth = xfmem.viewport.farZ / 16777216.0f;
|
||||
float min_depth = (xfmem.viewport.farZ - xfmem.viewport.zRange);
|
||||
float max_depth = xfmem.viewport.farZ;
|
||||
if (width < 0.f)
|
||||
{
|
||||
x += width;
|
||||
@ -215,6 +215,11 @@ void SetScissorAndViewport()
|
||||
y += height;
|
||||
height *= -1;
|
||||
}
|
||||
if (!g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange)
|
||||
{
|
||||
min_depth = min_depth / 16777216.0f;
|
||||
max_depth = max_depth / 16777216.0f;
|
||||
}
|
||||
|
||||
// The maximum depth that is written to the depth buffer should never exceed this value.
|
||||
// This is necessary because we use a 2^24 divisor for all our depth values to prevent
|
||||
|
@ -290,9 +290,11 @@ bool FramebufferManager::CreateEFBFramebuffer()
|
||||
}
|
||||
|
||||
// Clear the renderable textures out.
|
||||
g_gfx->SetAndClearFramebuffer(m_efb_framebuffer.get(), {{0.0f, 0.0f, 0.0f, 0.0f}},
|
||||
g_ActiveConfig.backend_info.bSupportsReversedDepthRange ? 1.0f :
|
||||
0.0f);
|
||||
g_gfx->SetAndClearFramebuffer(
|
||||
m_efb_framebuffer.get(), {{0.0f, 0.0f, 0.0f, 0.0f}},
|
||||
!g_ActiveConfig.backend_info.bSupportsReversedDepthRange ? 0.0f :
|
||||
g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange ? 16777215.0f :
|
||||
1.0f);
|
||||
|
||||
// Pixel Shader uses EFB scale as a constant, dirty that in case it changed
|
||||
Core::System::GetInstance().GetPixelShaderManager().Dirty();
|
||||
@ -1154,9 +1156,11 @@ void FramebufferManager::DoLoadState(PointerWrap& p)
|
||||
color_tex->texture->GetLayers() != m_efb_color_texture->GetLayers())
|
||||
{
|
||||
WARN_LOG_FMT(VIDEO, "Failed to deserialize EFB contents. Clearing instead.");
|
||||
g_gfx->SetAndClearFramebuffer(m_efb_framebuffer.get(), {{0.0f, 0.0f, 0.0f, 0.0f}},
|
||||
g_ActiveConfig.backend_info.bSupportsReversedDepthRange ? 1.0f :
|
||||
0.0f);
|
||||
g_gfx->SetAndClearFramebuffer(
|
||||
m_efb_framebuffer.get(), {{0.0f, 0.0f, 0.0f, 0.0f}},
|
||||
!g_ActiveConfig.backend_info.bSupportsReversedDepthRange ? 0.0f :
|
||||
g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange ? 16777215.0f :
|
||||
1.0f);
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -1260,7 +1260,9 @@ ShaderCode GeneratePixelShaderCode(APIType api_type, const ShaderHostConfig& hos
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!host_config.backend_reversed_depth_range)
|
||||
if (host_config.backend_unrestricted_depth_range)
|
||||
out.Write("\tint zCoord = int(rawpos.z);\n");
|
||||
else if (!host_config.backend_reversed_depth_range)
|
||||
out.Write("\tint zCoord = int((1.0 - rawpos.z) * 16777216.0);\n");
|
||||
else
|
||||
out.Write("\tint zCoord = int(rawpos.z * 16777216.0);\n");
|
||||
@ -1277,7 +1279,9 @@ ShaderCode GeneratePixelShaderCode(APIType api_type, const ShaderHostConfig& hos
|
||||
uid_data->ztest == EmulatedZ::EarlyWithZComplocHack;
|
||||
if (uid_data->per_pixel_depth && early_ztest)
|
||||
{
|
||||
if (!host_config.backend_reversed_depth_range)
|
||||
if (host_config.backend_unrestricted_depth_range)
|
||||
out.Write("\tdepth = float(zCoord);\n");
|
||||
else if (!host_config.backend_reversed_depth_range)
|
||||
out.Write("\tdepth = 1.0 - float(zCoord) / 16777216.0;\n");
|
||||
else
|
||||
out.Write("\tdepth = float(zCoord) / 16777216.0;\n");
|
||||
@ -1298,7 +1302,9 @@ ShaderCode GeneratePixelShaderCode(APIType api_type, const ShaderHostConfig& hos
|
||||
|
||||
if (uid_data->per_pixel_depth && uid_data->ztest == EmulatedZ::Late)
|
||||
{
|
||||
if (!host_config.backend_reversed_depth_range)
|
||||
if (host_config.backend_unrestricted_depth_range)
|
||||
out.Write("\tdepth = float(zCoord);\n");
|
||||
else if (!host_config.backend_reversed_depth_range)
|
||||
out.Write("\tdepth = 1.0 - float(zCoord) / 16777216.0;\n");
|
||||
else
|
||||
out.Write("\tdepth = float(zCoord) / 16777216.0;\n");
|
||||
@ -1923,7 +1929,9 @@ static void WriteAlphaTest(ShaderCode& out, const pixel_shader_uid_data* uid_dat
|
||||
if (per_pixel_depth)
|
||||
{
|
||||
out.Write("\t\tdepth = {};\n",
|
||||
!g_ActiveConfig.backend_info.bSupportsReversedDepthRange ? "0.0" : "1.0");
|
||||
!g_ActiveConfig.backend_info.bSupportsReversedDepthRange ? "0.0" :
|
||||
g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange ? "16777215.0" :
|
||||
"1.0");
|
||||
}
|
||||
|
||||
// ZCOMPLOC HACK:
|
||||
|
@ -90,9 +90,13 @@ u32 Renderer::AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data)
|
||||
float depth = g_framebuffer_manager->PeekEFBDepth(x, y);
|
||||
if (!g_ActiveConfig.backend_info.bSupportsReversedDepthRange)
|
||||
depth = 1.0f - depth;
|
||||
if (g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange)
|
||||
depth = static_cast<u32>(depth);
|
||||
else
|
||||
depth = static_cast<u32>(depth * 16777216.0f);
|
||||
|
||||
// Convert to 24bit depth
|
||||
u32 z24depth = std::clamp<u32>(static_cast<u32>(depth * 16777216.0f), 0, 0xFFFFFF);
|
||||
u32 z24depth = std::clamp<u32>(depth, 0, 0xFFFFFF);
|
||||
|
||||
if (bpmem.zcontrol.pixel_format == PixelFormat::RGB565_Z16)
|
||||
{
|
||||
@ -132,7 +136,9 @@ void Renderer::PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num
|
||||
{
|
||||
// Convert to floating-point depth.
|
||||
const EfbPokeData& point = points[i];
|
||||
float depth = float(point.data & 0xFFFFFF) / 16777216.0f;
|
||||
float depth = float(point.data & 0xFFFFFF);
|
||||
if (!g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange)
|
||||
depth = depth / 16777216.0f;
|
||||
if (!g_ActiveConfig.backend_info.bSupportsReversedDepthRange)
|
||||
depth = 1.0f - depth;
|
||||
|
||||
|
@ -48,6 +48,8 @@ ShaderHostConfig ShaderHostConfig::GetCurrent()
|
||||
bits.backend_dynamic_vertex_loader = g_ActiveConfig.backend_info.bSupportsDynamicVertexLoader;
|
||||
bits.backend_vs_point_line_expand = g_ActiveConfig.UseVSForLinePointExpand();
|
||||
bits.backend_gl_layer_in_fs = g_ActiveConfig.backend_info.bSupportsGLLayerInFS;
|
||||
bits.backend_unrestricted_depth_range =
|
||||
g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange;
|
||||
return bits;
|
||||
}
|
||||
|
||||
|
@ -181,6 +181,7 @@ union ShaderHostConfig
|
||||
BitField<27, 1, bool, u32> backend_dynamic_vertex_loader;
|
||||
BitField<28, 1, bool, u32> backend_vs_point_line_expand;
|
||||
BitField<29, 1, bool, u32> backend_gl_layer_in_fs;
|
||||
BitField<30, 1, bool, u32> backend_unrestricted_depth_range;
|
||||
|
||||
static ShaderHostConfig GetCurrent();
|
||||
};
|
||||
|
@ -127,8 +127,11 @@ static void WriteSampleFunction(ShaderCode& code, const EFBCopyParams& params, A
|
||||
if (!g_ActiveConfig.backend_info.bSupportsReversedDepthRange)
|
||||
code.Write(" tex_sample.x = 1.0 - tex_sample.x;\n");
|
||||
|
||||
code.Write(" uint depth = uint(tex_sample.x * 16777216.0);\n"
|
||||
" return uint4((depth >> 16) & 255u, (depth >> 8) & 255u, depth & 255u, 255u);\n"
|
||||
if (g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange)
|
||||
code.Write(" uint depth = uint(tex_sample.x);\n");
|
||||
else
|
||||
code.Write(" uint depth = uint(tex_sample.x * 16777216.0);\n");
|
||||
code.Write(" return uint4((depth >> 16) & 255u, (depth >> 8) & 255u, depth & 255u, 255u);\n"
|
||||
"}}\n");
|
||||
}
|
||||
else
|
||||
|
@ -113,8 +113,11 @@ ShaderCode GeneratePixelShader(APIType api_type, const UidData* uid_data)
|
||||
if (!g_ActiveConfig.backend_info.bSupportsReversedDepthRange)
|
||||
out.Write(" tex_sample.x = 1.0 - tex_sample.x;\n");
|
||||
|
||||
out.Write(" uint depth = uint(tex_sample.x * 16777216.0);\n"
|
||||
" return uint4((depth >> 16) & 255u, (depth >> 8) & 255u, depth & 255u, 255u);\n"
|
||||
if (g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange)
|
||||
out.Write(" uint depth = uint(tex_sample.x);\n");
|
||||
else
|
||||
out.Write(" uint depth = uint(tex_sample.x * 16777216.0);\n");
|
||||
out.Write(" return uint4((depth >> 16) & 255u, (depth >> 8) & 255u, depth & 255u, 255u);\n"
|
||||
"}}\n");
|
||||
}
|
||||
else
|
||||
|
@ -1326,7 +1326,9 @@ ShaderCode GenPixelShader(APIType api_type, const ShaderHostConfig& host_config,
|
||||
|
||||
if (host_config.fast_depth_calc)
|
||||
{
|
||||
if (!host_config.backend_reversed_depth_range)
|
||||
if (host_config.backend_unrestricted_depth_range)
|
||||
out.Write(" int zCoord = int(rawpos.z);\n");
|
||||
else if (!host_config.backend_reversed_depth_range)
|
||||
out.Write(" int zCoord = int((1.0 - rawpos.z) * 16777216.0);\n");
|
||||
else
|
||||
out.Write(" int zCoord = int(rawpos.z * 16777216.0);\n");
|
||||
@ -1382,7 +1384,9 @@ ShaderCode GenPixelShader(APIType api_type, const ShaderHostConfig& host_config,
|
||||
out.Write(" // If early depth is enabled, write to zbuffer before depth textures\n"
|
||||
" // If early depth isn't enabled, we write to the zbuffer here\n"
|
||||
" int zbuffer_zCoord = bpmem_late_ztest ? zCoord : early_zCoord;\n");
|
||||
if (!host_config.backend_reversed_depth_range)
|
||||
if (host_config.backend_unrestricted_depth_range)
|
||||
out.Write(" depth = float(zbuffer_zCoord);\n");
|
||||
else if (!host_config.backend_reversed_depth_range)
|
||||
out.Write(" depth = 1.0 - float(zbuffer_zCoord) / 16777216.0;\n");
|
||||
else
|
||||
out.Write(" depth = float(zbuffer_zCoord) / 16777216.0;\n");
|
||||
|
@ -427,19 +427,33 @@ float3 load_input_float3_rawtex(uint vtx_offset, uint attr_offset) {{
|
||||
}
|
||||
}
|
||||
|
||||
// Write the true depth value. If the game uses depth textures, then the pixel shader will
|
||||
// override it with the correct values if not then early z culling will improve speed.
|
||||
// There are two different ways to do this, when the depth range is oversized, we process
|
||||
// the depth range in the vertex shader, if not we let the host driver handle it.
|
||||
// Write the inverted depth value to map the -1..0 clip-space range to expected the 0..1 range.
|
||||
// If the game uses depth textures, then the pixel shader will override it with the correct values
|
||||
// if not then early z culling will improve speed.
|
||||
//
|
||||
// Adjust z for the depth range. We're using an equation which incorperates a depth inversion,
|
||||
// so we can map the console -1..0 range to the 0..1 range used in the depth buffer.
|
||||
// We have to handle the depth range in the vertex shader instead of after the perspective
|
||||
// divide, because some games will use a depth range larger than what is allowed by the
|
||||
// graphics API. These large depth ranges will still be clipped to the 0..1 range, so these
|
||||
// games effectively add a depth bias to the values written to the depth buffer.
|
||||
// The depth range can also be oversized beyond the range supported by the depth buffer. The final
|
||||
// depth value will still be clamped to the 0..1 range, so these games effectively add a depth
|
||||
// bias to the values written to the depth buffer.
|
||||
if (host_config.backend_unrestricted_depth_range)
|
||||
{
|
||||
// If an unrestricted depth range is supported then we let host driver handle the oversized
|
||||
// depth range. This can only work if the host driver also supports a feature to allow us to
|
||||
// clamp any depth values that are beyond the supported 0..2^24-1 of the depth buffer.
|
||||
// On top of that we also get rid of any normalization to further avoid rounding errors.
|
||||
//
|
||||
// Getting rid of the normalization additionally allows us to add a small depth bias to
|
||||
// influence rounding behaviour since the console expects the depth value to be truncated
|
||||
// before being added to the far value of the depth range.
|
||||
out.Write("o.pos.z = -o.pos.z + (0.5 / 16777216.0);\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
// If only a depth range of 0..1 is supported then we process the depth equation in the vertex
|
||||
// shader and handle the depth clamp by setting the depth range to 0..(2^24-1)/(2^24).
|
||||
// If the depth range is not oversized then this equation will be set to so that z = -z.
|
||||
out.Write("o.pos.z = o.pos.w * " I_PIXELCENTERCORRECTION ".w - "
|
||||
"o.pos.z * " I_PIXELCENTERCORRECTION ".z;\n");
|
||||
}
|
||||
|
||||
if (!host_config.backend_clip_control)
|
||||
{
|
||||
|
@ -613,24 +613,38 @@ ShaderCode GenerateVertexShaderCode(APIType api_type, const ShaderHostConfig& ho
|
||||
out.Write("o.pos.z = o.pos.z * (1.0 - 1e-7);\n");
|
||||
}
|
||||
|
||||
// Write the true depth value. If the game uses depth textures, then the pixel shader will
|
||||
// override it with the correct values if not then early z culling will improve speed.
|
||||
// There are two different ways to do this, when the depth range is oversized, we process
|
||||
// the depth range in the vertex shader, if not we let the host driver handle it.
|
||||
// Write the inverted depth value to map the -1..0 clip-space range to expected the 0..1 range.
|
||||
// If the game uses depth textures, then the pixel shader will override it with the correct values
|
||||
// if not then early z culling will improve speed.
|
||||
//
|
||||
// Adjust z for the depth range. We're using an equation which incorperates a depth inversion,
|
||||
// so we can map the console -1..0 range to the 0..1 range used in the depth buffer.
|
||||
// We have to handle the depth range in the vertex shader instead of after the perspective
|
||||
// divide, because some games will use a depth range larger than what is allowed by the
|
||||
// graphics API. These large depth ranges will still be clipped to the 0..1 range, so these
|
||||
// games effectively add a depth bias to the values written to the depth buffer.
|
||||
// The depth range can also be oversized beyond the range supported by the depth buffer. The final
|
||||
// depth value will still be clamped to the 0..1 range, so these games effectively add a depth
|
||||
// bias to the values written to the depth buffer.
|
||||
if (host_config.backend_unrestricted_depth_range)
|
||||
{
|
||||
// If an unrestricted depth range is supported then we let host driver handle the oversized
|
||||
// depth range. This can only work if the host driver also supports a feature to allow us to
|
||||
// clamp any depth values that are beyond the supported 0..2^24-1 of the depth buffer.
|
||||
// On top of that we also get rid of any normalization to further avoid rounding errors.
|
||||
//
|
||||
// Getting rid of the normalization additionally allows us to add a small depth bias to
|
||||
// influence rounding behaviour since the console expects the depth value to be truncated
|
||||
// before being added to the far value of the depth range.
|
||||
out.Write("o.pos.z = -o.pos.z + (0.5 / 16777216.0);\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
// If only a depth range of 0..1 is supported then we process the depth equation in the vertex
|
||||
// shader and handle the depth clamp by setting the depth range to 0..(2^24-1)/(2^24).
|
||||
// If the depth range is not oversized then this equation will be set to so that z = -z.
|
||||
out.Write("o.pos.z = o.pos.w * " I_PIXELCENTERCORRECTION ".w - "
|
||||
"o.pos.z * " I_PIXELCENTERCORRECTION ".z;\n");
|
||||
}
|
||||
|
||||
if (!host_config.backend_clip_control)
|
||||
{
|
||||
// If the graphics API doesn't support a depth range of 0..1, then we need to map z to
|
||||
// the -1..1 range. Unfortunately we have to use a substraction, which is a lossy floating-point
|
||||
// the -1..1 range. Unfortunately we have to use a subtraction, which is a lossy floating-point
|
||||
// operation that can introduce a round-trip error.
|
||||
out.Write("o.pos.z = o.pos.z * 2.0 - o.pos.w;\n");
|
||||
}
|
||||
|
@ -139,6 +139,10 @@ void VertexShaderManager::SetProjectionMatrix(XFStateManager& xf_state_manager)
|
||||
|
||||
bool VertexShaderManager::UseVertexDepthRange()
|
||||
{
|
||||
// Backend has full native support for the depth range including clamping the depth.
|
||||
if (g_ActiveConfig.backend_info.bSupportsUnrestrictedDepthRange)
|
||||
return false;
|
||||
|
||||
// We can't compute the depth range in the vertex shader if we don't support depth clamp.
|
||||
if (!g_ActiveConfig.backend_info.bSupportsDepthClamp)
|
||||
return false;
|
||||
|
@ -338,6 +338,7 @@ struct VideoConfig final
|
||||
bool bSupportsVSLinePointExpand = false;
|
||||
bool bSupportsGLLayerInFS = true;
|
||||
bool bSupportsHDROutput = false;
|
||||
bool bSupportsUnrestrictedDepthRange = false;
|
||||
} backend_info;
|
||||
|
||||
// Utility
|
||||
|
Loading…
Reference in New Issue
Block a user