diff options
| author | bunnei <bunneidev@gmail.com> | 2020-05-24 00:34:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-24 00:34:12 -0400 |
| commit | 325e7eed3c48b8c09830710efa7b19a06f4568a8 (patch) | |
| tree | 449e2f63a63ec352c38763231a466bf1e2744ad1 /src/video_core/renderer_opengl/gl_device.h | |
| parent | 487dd051706247771e1733b0671a417f63b7f532 (diff) | |
| parent | 420cc13248350ef5c2d19e0b961cb4185cd16a8a (diff) | |
Merge pull request #3964 from ReinUsesLisp/arb-integration
renderer_opengl: Add assembly program code paths
Diffstat (limited to 'src/video_core/renderer_opengl/gl_device.h')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.h b/src/video_core/renderer_opengl/gl_device.h index a55050cb5..e915dbd86 100644 --- a/src/video_core/renderer_opengl/gl_device.h +++ b/src/video_core/renderer_opengl/gl_device.h @@ -88,6 +88,10 @@ public: return has_fast_buffer_sub_data; } + bool UseAssemblyShaders() const { + return use_assembly_shaders; + } + private: static bool TestVariableAoffi(); static bool TestPreciseBug(); @@ -107,6 +111,7 @@ private: bool has_precise_bug{}; bool has_broken_compute{}; bool has_fast_buffer_sub_data{}; + bool use_assembly_shaders{}; }; } // namespace OpenGL |
