summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_device.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-03-16 07:59:08 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-03-16 07:59:08 +0100
commit311d2fc7683a8e1d9cebfa209c415ac4c84a3c16 (patch)
tree11862cf2103fdb687de0635baf8d21b204eb10c5 /src/video_core/renderer_opengl/gl_device.h
parentMerge pull request #3515 from ReinUsesLisp/vertex-vk-assert (diff)
downloadyuzu-311d2fc7683a8e1d9cebfa209c415ac4c84a3c16.tar
yuzu-311d2fc7683a8e1d9cebfa209c415ac4c84a3c16.tar.gz
yuzu-311d2fc7683a8e1d9cebfa209c415ac4c84a3c16.tar.bz2
yuzu-311d2fc7683a8e1d9cebfa209c415ac4c84a3c16.tar.lz
yuzu-311d2fc7683a8e1d9cebfa209c415ac4c84a3c16.tar.xz
yuzu-311d2fc7683a8e1d9cebfa209c415ac4c84a3c16.tar.zst
yuzu-311d2fc7683a8e1d9cebfa209c415ac4c84a3c16.zip
Diffstat (limited to 'src/video_core/renderer_opengl/gl_device.h')
-rw-r--r--src/video_core/renderer_opengl/gl_device.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/video_core/renderer_opengl/gl_device.h b/src/video_core/renderer_opengl/gl_device.h
index 7aaa3a077..d73b099d0 100644
--- a/src/video_core/renderer_opengl/gl_device.h
+++ b/src/video_core/renderer_opengl/gl_device.h
@@ -84,10 +84,6 @@ public:
return has_fast_buffer_sub_data;
}
- bool HasDebugTool() const {
- return has_debug_tool;
- }
-
private:
static bool TestVariableAoffi();
static bool TestPreciseBug();
@@ -106,7 +102,6 @@ private:
bool has_precise_bug{};
bool has_broken_compute{};
bool has_fast_buffer_sub_data{};
- bool has_debug_tool{};
};
} // namespace OpenGL