diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-12-19 18:36:50 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-19 18:36:50 -0500 |
| commit | 6a1fa9bb17bdda171d0d45543dd663886bc6ce88 (patch) | |
| tree | b6108e887ffc058ac3e4a3cdb72e82f16be8fb4a /src/video_core/renderer_opengl/gl_device.h | |
| parent | 345ec255329d572db94827b82d29b995e1c9dd31 (diff) | |
| parent | 1bb76201e65563aa3be08102d8e85321b6966953 (diff) | |
Merge pull request #12411 from ameerj/gl-nv-tfb-fixups
gl_buffer_cache: Reintroduce NV_vertex_buffer_unified_memory
Diffstat (limited to 'src/video_core/renderer_opengl/gl_device.h')
| -rw-r--r-- | src/video_core/renderer_opengl/gl_device.h | 5 |
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 96034ea4a..a5a6bbbba 100644 --- a/src/video_core/renderer_opengl/gl_device.h +++ b/src/video_core/renderer_opengl/gl_device.h @@ -72,6 +72,10 @@ public: return has_texture_shadow_lod; } + bool HasVertexBufferUnifiedMemory() const { + return has_vertex_buffer_unified_memory; + } + bool HasASTC() const { return has_astc; } @@ -211,6 +215,7 @@ private: bool has_vertex_viewport_layer{}; bool has_image_load_formatted{}; bool has_texture_shadow_lod{}; + bool has_vertex_buffer_unified_memory{}; bool has_astc{}; bool has_variable_aoffi{}; bool has_component_indexing_bug{}; |
