Compare commits

...

1 Commits

Author SHA1 Message Date
vonchenplus
610378faa6 Disable NV_vertex_buffer_unified_memory 2021-10-13 23:38:45 +08:00

View File

@@ -157,7 +157,7 @@ Device::Device() {
has_broken_texture_view_formats = is_amd || (!is_linux && is_intel);
has_nv_viewport_array2 = GLAD_GL_NV_viewport_array2;
has_derivative_control = GLAD_GL_ARB_derivative_control;
has_vertex_buffer_unified_memory = GLAD_GL_NV_vertex_buffer_unified_memory;
has_vertex_buffer_unified_memory = false;
has_debugging_tool_attached = IsDebugToolAttached(extensions);
has_depth_buffer_float = HasExtension(extensions, "GL_NV_depth_buffer_float");
has_geometry_shader_passthrough = GLAD_GL_NV_geometry_shader_passthrough;