diff options
| author | 2021-05-25 19:55:40 -0400 | |
|---|---|---|
| committer | 2021-07-22 21:51:36 -0400 | |
| commit | bd24fa97138ff1e33a7f8d3c30a4f4482a6482a8 (patch) | |
| tree | 5ae0c1d535a258dbe45d7aecccf925f6d1ab62f5 /src/video_core | |
| parent | glsl: Simply FP storage atomics (diff) | |
| download | yuzu-bd24fa97138ff1e33a7f8d3c30a4f4482a6482a8.tar.gz yuzu-bd24fa97138ff1e33a7f8d3c30a4f4482a6482a8.tar.xz yuzu-bd24fa97138ff1e33a7f8d3c30a4f4482a6482a8.zip | |
glsl: Query GL Device for FP16 extension support
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.cpp | 2 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.h | 10 | ||||
| -rw-r--r-- | src/video_core/renderer_opengl/gl_shader_cache.cpp | 2 |
3 files changed, 14 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.cpp b/src/video_core/renderer_opengl/gl_device.cpp index 3f7929f9e..071133781 100644 --- a/src/video_core/renderer_opengl/gl_device.cpp +++ b/src/video_core/renderer_opengl/gl_device.cpp | |||
| @@ -158,6 +158,8 @@ Device::Device() { | |||
| 158 | has_vertex_buffer_unified_memory = GLAD_GL_NV_vertex_buffer_unified_memory; | 158 | has_vertex_buffer_unified_memory = GLAD_GL_NV_vertex_buffer_unified_memory; |
| 159 | has_debugging_tool_attached = IsDebugToolAttached(extensions); | 159 | has_debugging_tool_attached = IsDebugToolAttached(extensions); |
| 160 | has_depth_buffer_float = HasExtension(extensions, "GL_NV_depth_buffer_float"); | 160 | has_depth_buffer_float = HasExtension(extensions, "GL_NV_depth_buffer_float"); |
| 161 | has_nv_gpu_shader_5 = GLAD_GL_NV_gpu_shader5; | ||
| 162 | has_amd_shader_half_float = GLAD_GL_AMD_gpu_shader_half_float; | ||
| 161 | 163 | ||
| 162 | // At the moment of writing this, only Nvidia's driver optimizes BufferSubData on exclusive | 164 | // At the moment of writing this, only Nvidia's driver optimizes BufferSubData on exclusive |
| 163 | // uniform buffers as "push constants" | 165 | // uniform buffers as "push constants" |
diff --git a/src/video_core/renderer_opengl/gl_device.h b/src/video_core/renderer_opengl/gl_device.h index 1ffd24883..9b9402c29 100644 --- a/src/video_core/renderer_opengl/gl_device.h +++ b/src/video_core/renderer_opengl/gl_device.h | |||
| @@ -120,6 +120,14 @@ public: | |||
| 120 | return has_depth_buffer_float; | 120 | return has_depth_buffer_float; |
| 121 | } | 121 | } |
| 122 | 122 | ||
| 123 | bool HasNvGpuShader5() const { | ||
| 124 | return has_nv_gpu_shader_5; | ||
| 125 | } | ||
| 126 | |||
| 127 | bool HasAmdShaderHalfFloat() const { | ||
| 128 | return has_amd_shader_half_float; | ||
| 129 | } | ||
| 130 | |||
| 123 | private: | 131 | private: |
| 124 | static bool TestVariableAoffi(); | 132 | static bool TestVariableAoffi(); |
| 125 | static bool TestPreciseBug(); | 133 | static bool TestPreciseBug(); |
| @@ -151,6 +159,8 @@ private: | |||
| 151 | bool use_asynchronous_shaders{}; | 159 | bool use_asynchronous_shaders{}; |
| 152 | bool use_driver_cache{}; | 160 | bool use_driver_cache{}; |
| 153 | bool has_depth_buffer_float{}; | 161 | bool has_depth_buffer_float{}; |
| 162 | bool has_nv_gpu_shader_5{}; | ||
| 163 | bool has_amd_shader_half_float{}; | ||
| 154 | }; | 164 | }; |
| 155 | 165 | ||
| 156 | } // namespace OpenGL | 166 | } // namespace OpenGL |
diff --git a/src/video_core/renderer_opengl/gl_shader_cache.cpp b/src/video_core/renderer_opengl/gl_shader_cache.cpp index 602cf025b..e00d01e34 100644 --- a/src/video_core/renderer_opengl/gl_shader_cache.cpp +++ b/src/video_core/renderer_opengl/gl_shader_cache.cpp | |||
| @@ -217,6 +217,8 @@ ShaderCache::ShaderCache(RasterizerOpenGL& rasterizer_, Core::Frontend::EmuWindo | |||
| 217 | .support_demote_to_helper_invocation = false, | 217 | .support_demote_to_helper_invocation = false, |
| 218 | .support_int64_atomics = false, | 218 | .support_int64_atomics = false, |
| 219 | .support_derivative_control = device.HasDerivativeControl(), | 219 | .support_derivative_control = device.HasDerivativeControl(), |
| 220 | .support_gl_nv_gpu_shader_5 = device.HasNvGpuShader5(), | ||
| 221 | .support_gl_amd_gpu_shader_half_float = device.HasAmdShaderHalfFloat(), | ||
| 220 | 222 | ||
| 221 | .warp_size_potentially_larger_than_guest = true, | 223 | .warp_size_potentially_larger_than_guest = true, |
| 222 | 224 | ||