summaryrefslogtreecommitdiffstats
path: root/src/video_core/renderer_opengl/gl_device.h
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2021-06-13 06:05:19 +0200
committerameerj <52414509+ameerj@users.noreply.github.com>2021-07-23 03:51:38 +0200
commit5e7b2b9661bf685c3950d7c4065d0d35b488f95c (patch)
tree957dc64090b0e376604322e7d801fff4fa46abf5 /src/video_core/renderer_opengl/gl_device.h
parentglsl: Implement legacy varyings (diff)
downloadyuzu-5e7b2b9661bf685c3950d7c4065d0d35b488f95c.tar
yuzu-5e7b2b9661bf685c3950d7c4065d0d35b488f95c.tar.gz
yuzu-5e7b2b9661bf685c3950d7c4065d0d35b488f95c.tar.bz2
yuzu-5e7b2b9661bf685c3950d7c4065d0d35b488f95c.tar.lz
yuzu-5e7b2b9661bf685c3950d7c4065d0d35b488f95c.tar.xz
yuzu-5e7b2b9661bf685c3950d7c4065d0d35b488f95c.tar.zst
yuzu-5e7b2b9661bf685c3950d7c4065d0d35b488f95c.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, 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 ff0ff2b08..0b59c9df0 100644
--- a/src/video_core/renderer_opengl/gl_device.h
+++ b/src/video_core/renderer_opengl/gl_device.h
@@ -128,6 +128,10 @@ public:
return has_amd_shader_half_float;
}
+ bool HasSparseTexture2() const {
+ return has_sparse_texture_2;
+ }
+
bool IsWarpSizePotentiallyLargerThanGuest() const {
return warp_size_potentially_larger_than_guest;
}
@@ -165,6 +169,7 @@ private:
bool has_depth_buffer_float{};
bool has_nv_gpu_shader_5{};
bool has_amd_shader_half_float{};
+ bool has_sparse_texture_2{};
bool warp_size_potentially_larger_than_guest{};
};