summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_device.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2019-11-02 08:08:31 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-11-02 09:05:34 +0100
commit76ca2a5f82f4df64cb839af42c93acb6705411ae (patch)
tree22ef46bef8f32d8b2aa2f3928a96b30b3f69e213 /src/video_core/renderer_opengl/gl_device.h
parentMerge pull request #3054 from FernandoS27/fix-tld4-2 (diff)
downloadyuzu-76ca2a5f82f4df64cb839af42c93acb6705411ae.tar
yuzu-76ca2a5f82f4df64cb839af42c93acb6705411ae.tar.gz
yuzu-76ca2a5f82f4df64cb839af42c93acb6705411ae.tar.bz2
yuzu-76ca2a5f82f4df64cb839af42c93acb6705411ae.tar.lz
yuzu-76ca2a5f82f4df64cb839af42c93acb6705411ae.tar.xz
yuzu-76ca2a5f82f4df64cb839af42c93acb6705411ae.tar.zst
yuzu-76ca2a5f82f4df64cb839af42c93acb6705411ae.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/renderer_opengl/gl_device.h5
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 bb273c3d6..bf35bd0b6 100644
--- a/src/video_core/renderer_opengl/gl_device.h
+++ b/src/video_core/renderer_opengl/gl_device.h
@@ -54,6 +54,10 @@ public:
return has_precise_bug;
}
+ bool HasFastBufferSubData() const {
+ return has_fast_buffer_sub_data;
+ }
+
private:
static bool TestVariableAoffi();
static bool TestComponentIndexingBug();
@@ -69,6 +73,7 @@ private:
bool has_variable_aoffi{};
bool has_component_indexing_bug{};
bool has_precise_bug{};
+ bool has_fast_buffer_sub_data{};
};
} // namespace OpenGL