summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_device.h
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-06-20 13:41:55 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-06-21 04:14:32 +0200
commit1e65da971bf6edd5611e6e409ba1cc4f99e58655 (patch)
treec845e59c2b1725fafce706ba7c40230f7e9d159d /src/video_core/renderer_opengl/gl_device.h
parentMerge pull request #4099 from MerryMage/macOS-build (diff)
downloadyuzu-1e65da971bf6edd5611e6e409ba1cc4f99e58655.tar
yuzu-1e65da971bf6edd5611e6e409ba1cc4f99e58655.tar.gz
yuzu-1e65da971bf6edd5611e6e409ba1cc4f99e58655.tar.bz2
yuzu-1e65da971bf6edd5611e6e409ba1cc4f99e58655.tar.lz
yuzu-1e65da971bf6edd5611e6e409ba1cc4f99e58655.tar.xz
yuzu-1e65da971bf6edd5611e6e409ba1cc4f99e58655.tar.zst
yuzu-1e65da971bf6edd5611e6e409ba1cc4f99e58655.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 145347943..c86e709b1 100644
--- a/src/video_core/renderer_opengl/gl_device.h
+++ b/src/video_core/renderer_opengl/gl_device.h
@@ -68,6 +68,10 @@ public:
return has_image_load_formatted;
}
+ bool HasTextureShadowLod() const {
+ return has_texture_shadow_lod;
+ }
+
bool HasASTC() const {
return has_astc;
}
@@ -110,6 +114,7 @@ private:
bool has_shader_ballot{};
bool has_vertex_viewport_layer{};
bool has_image_load_formatted{};
+ bool has_texture_shadow_lod{};
bool has_astc{};
bool has_variable_aoffi{};
bool has_component_indexing_bug{};