diff options
| author | 2024-02-26 11:51:25 -0600 | |
|---|---|---|
| committer | 2024-02-26 11:51:25 -0600 | |
| commit | 1bec420695ebf2636b575148080bf1dae2e78a65 (patch) | |
| tree | 77543157e23c95e4a49a3fda697c72b7ddd2b6e8 | |
| parent | Merge pull request #13159 from liamwhite/web-error (diff) | |
| parent | renderer_opengl: declare geometry stream support in profile (diff) | |
| download | yuzu-1bec420695ebf2636b575148080bf1dae2e78a65.tar.gz yuzu-1bec420695ebf2636b575148080bf1dae2e78a65.tar.xz yuzu-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.cpp | 1 |
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_, | |||
| 215 | .support_gl_variable_aoffi = device.HasVariableAoffi(), | 215 | .support_gl_variable_aoffi = device.HasVariableAoffi(), |
| 216 | .support_gl_sparse_textures = device.HasSparseTexture2(), | 216 | .support_gl_sparse_textures = device.HasSparseTexture2(), |
| 217 | .support_gl_derivative_control = device.HasDerivativeControl(), | 217 | .support_gl_derivative_control = device.HasDerivativeControl(), |
| 218 | .support_geometry_streams = true, | ||
| 218 | 219 | ||
| 219 | .warp_size_potentially_larger_than_guest = device.IsWarpSizePotentiallyLargerThanGuest(), | 220 | .warp_size_potentially_larger_than_guest = device.IsWarpSizePotentiallyLargerThanGuest(), |
| 220 | 221 | ||