diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.cpp | 2 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.h | 5 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_rasterizer.cpp | 6 |
3 files changed, 12 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.cpp b/src/video_core/renderer_opengl/gl_device.cpp index 48d5c4a5e..1ae5f1d62 100644 --- a/src/video_core/renderer_opengl/gl_device.cpp +++ b/src/video_core/renderer_opengl/gl_device.cpp | |||
| @@ -239,6 +239,7 @@ Device::Device() { | |||
| 239 | has_nv_viewport_array2 = GLAD_GL_NV_viewport_array2; | 239 | has_nv_viewport_array2 = GLAD_GL_NV_viewport_array2; |
| 240 | has_vertex_buffer_unified_memory = GLAD_GL_NV_vertex_buffer_unified_memory; | 240 | has_vertex_buffer_unified_memory = GLAD_GL_NV_vertex_buffer_unified_memory; |
| 241 | has_debugging_tool_attached = IsDebugToolAttached(extensions); | 241 | has_debugging_tool_attached = IsDebugToolAttached(extensions); |
| 242 | has_depth_buffer_float = HasExtension(extensions, "GL_NV_depth_buffer_float"); | ||
| 242 | 243 | ||
| 243 | // At the moment of writing this, only Nvidia's driver optimizes BufferSubData on exclusive | 244 | // At the moment of writing this, only Nvidia's driver optimizes BufferSubData on exclusive |
| 244 | // uniform buffers as "push constants" | 245 | // uniform buffers as "push constants" |
| @@ -275,6 +276,7 @@ Device::Device(std::nullptr_t) { | |||
| 275 | has_image_load_formatted = true; | 276 | has_image_load_formatted = true; |
| 276 | has_texture_shadow_lod = true; | 277 | has_texture_shadow_lod = true; |
| 277 | has_variable_aoffi = true; | 278 | has_variable_aoffi = true; |
| 279 | has_depth_buffer_float = true; | ||
| 278 | } | 280 | } |
| 279 | 281 | ||
| 280 | bool Device::TestVariableAoffi() { | 282 | bool Device::TestVariableAoffi() { |
diff --git a/src/video_core/renderer_opengl/gl_device.h b/src/video_core/renderer_opengl/gl_device.h index ee053776d..f24bd0c7b 100644 --- a/src/video_core/renderer_opengl/gl_device.h +++ b/src/video_core/renderer_opengl/gl_device.h | |||
| @@ -122,6 +122,10 @@ public: | |||
| 122 | return use_driver_cache; | 122 | return use_driver_cache; |
| 123 | } | 123 | } |
| 124 | 124 | ||
| 125 | bool HasDepthBufferFloat() const { | ||
| 126 | return has_depth_buffer_float; | ||
| 127 | } | ||
| 128 | |||
| 125 | private: | 129 | private: |
| 126 | static bool TestVariableAoffi(); | 130 | static bool TestVariableAoffi(); |
| 127 | static bool TestPreciseBug(); | 131 | static bool TestPreciseBug(); |
| @@ -150,6 +154,7 @@ private: | |||
| 150 | bool use_assembly_shaders{}; | 154 | bool use_assembly_shaders{}; |
| 151 | bool use_asynchronous_shaders{}; | 155 | bool use_asynchronous_shaders{}; |
| 152 | bool use_driver_cache{}; | 156 | bool use_driver_cache{}; |
| 157 | bool has_depth_buffer_float{}; | ||
| 153 | }; | 158 | }; |
| 154 | 159 | ||
| 155 | } // namespace OpenGL | 160 | } // namespace OpenGL |
diff --git a/src/video_core/renderer_opengl/gl_rasterizer.cpp b/src/video_core/renderer_opengl/gl_rasterizer.cpp index 418644108..4610fd160 100644 --- a/src/video_core/renderer_opengl/gl_rasterizer.cpp +++ b/src/video_core/renderer_opengl/gl_rasterizer.cpp | |||
| @@ -889,7 +889,11 @@ void RasterizerOpenGL::SyncViewport() { | |||
| 889 | const GLdouble reduce_z = regs.depth_mode == Maxwell::DepthMode::MinusOneToOne; | 889 | const GLdouble reduce_z = regs.depth_mode == Maxwell::DepthMode::MinusOneToOne; |
| 890 | const GLdouble near_depth = src.translate_z - src.scale_z * reduce_z; | 890 | const GLdouble near_depth = src.translate_z - src.scale_z * reduce_z; |
| 891 | const GLdouble far_depth = src.translate_z + src.scale_z; | 891 | const GLdouble far_depth = src.translate_z + src.scale_z; |
| 892 | glDepthRangeIndexed(static_cast<GLuint>(i), near_depth, far_depth); | 892 | if (device.HasDepthBufferFloat()) { |
| 893 | glDepthRangeIndexeddNV(static_cast<GLuint>(i), near_depth, far_depth); | ||
| 894 | } else { | ||
| 895 | glDepthRangeIndexed(static_cast<GLuint>(i), near_depth, far_depth); | ||
| 896 | } | ||
| 893 | 897 | ||
| 894 | if (!GLAD_GL_NV_viewport_swizzle) { | 898 | if (!GLAD_GL_NV_viewport_swizzle) { |
| 895 | continue; | 899 | continue; |