aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNarr the Reg <[email protected]>2024-02-26 11:51:25 -0600
committerGitHub <[email protected]>2024-02-26 11:51:25 -0600
commit1bec420695ebf2636b575148080bf1dae2e78a65 (patch)
tree77543157e23c95e4a49a3fda697c72b7ddd2b6e8
parent79edad25337e408f2b8a5060f7653e1174367360 (diff)
parenta0e254e7c4be1d887054ad90004801db5f05c457 (diff)
downloadyuzu-android-1bec420695ebf2636b575148080bf1dae2e78a65.tar.gz
yuzu-android-1bec420695ebf2636b575148080bf1dae2e78a65.zip
Merge pull request #13172 from liamwhite/gl-streams
renderer_opengl: declare geometry stream support in profile
-rw-r--r--src/video_core/renderer_opengl/gl_shader_cache.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/renderer_opengl/gl_shader_cache.cpp b/src/video_core/renderer_opengl/gl_shader_cache.cpp
index 50462cdde..c4bad6fca 100644
--- a/src/video_core/renderer_opengl/gl_shader_cache.cpp
+++ b/src/video_core/renderer_opengl/gl_shader_cache.cpp
@@ -215,6 +215,7 @@ ShaderCache::ShaderCache(Tegra::MaxwellDeviceMemoryManager& device_memory_,
.support_gl_variable_aoffi = device.HasVariableAoffi(),
.support_gl_sparse_textures = device.HasSparseTexture2(),
.support_gl_derivative_control = device.HasDerivativeControl(),
+ .support_geometry_streams = true,
.warp_size_potentially_larger_than_guest = device.IsWarpSizePotentiallyLargerThanGuest(),