diff options
| author | bunnei <bunneidev@gmail.com> | 2019-09-04 17:42:13 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-04 17:42:13 -0400 |
| commit | e77d2b2103edac8eef9e3a37ee35e6b470b0c975 (patch) | |
| tree | be491f6f0d7c72b9925ffbbbedc3002f0178cabd /src/video_core/renderer_opengl/gl_device.h | |
| parent | a1d48b5f529156c7ab35f1b3e2a15af66e58b15b (diff) | |
| parent | 6177cbdbe175c4bfc9387c1918340d71766dad18 (diff) | |
Merge pull request #2801 from ReinUsesLisp/typed-decompiler
gl_shader_decompiler: Rework GLSL decompiler type system
Diffstat (limited to 'src/video_core/renderer_opengl/gl_device.h')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.h b/src/video_core/renderer_opengl/gl_device.h index 3ef7c6dd8..ba6dcd3be 100644 --- a/src/video_core/renderer_opengl/gl_device.h +++ b/src/video_core/renderer_opengl/gl_device.h @@ -46,9 +46,14 @@ public: return has_component_indexing_bug; } + bool HasPreciseBug() const { + return has_precise_bug; + } + private: static bool TestVariableAoffi(); static bool TestComponentIndexingBug(); + static bool TestPreciseBug(); std::size_t uniform_buffer_alignment{}; std::size_t shader_storage_alignment{}; @@ -58,6 +63,7 @@ private: bool has_vertex_viewport_layer{}; bool has_variable_aoffi{}; bool has_component_indexing_bug{}; + bool has_precise_bug{}; }; } // namespace OpenGL |
