summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_device.h
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-06-11 13:20:27 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-06-21 02:38:34 +0200
commitb01f9c8a7090fa056ca564593eabcebab946ef41 (patch)
tree5f231b6ee3552e609c718f849b8312dd95ed48d0 /src/video_core/renderer_opengl/gl_device.h
parenttexture_cache: correct mutex locks (diff)
downloadyuzu-b01f9c8a7090fa056ca564593eabcebab946ef41.tar
yuzu-b01f9c8a7090fa056ca564593eabcebab946ef41.tar.gz
yuzu-b01f9c8a7090fa056ca564593eabcebab946ef41.tar.bz2
yuzu-b01f9c8a7090fa056ca564593eabcebab946ef41.tar.lz
yuzu-b01f9c8a7090fa056ca564593eabcebab946ef41.tar.xz
yuzu-b01f9c8a7090fa056ca564593eabcebab946ef41.tar.zst
yuzu-b01f9c8a7090fa056ca564593eabcebab946ef41.zip
Diffstat (limited to '')
-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 1afe16779..8c8c93760 100644
--- a/src/video_core/renderer_opengl/gl_device.h
+++ b/src/video_core/renderer_opengl/gl_device.h
@@ -34,10 +34,6 @@ public:
return has_component_indexing_bug;
}
- bool IsTuringGPU() const {
- return is_turing_plus;
- }
-
private:
static bool TestVariableAoffi();
static bool TestComponentIndexingBug();
@@ -47,7 +43,6 @@ private:
u32 max_varyings{};
bool has_variable_aoffi{};
bool has_component_indexing_bug{};
- bool is_turing_plus{};
};
} // namespace OpenGL