Commit bf1a4627 by Mohan Maiya Committed by Commit Bot

Vulkan: Enable GL_EXT_buffer_storage extension

This change 7bbe497a accidentally disabled support for GL_EXT_buffer_storage extension for the Vulkan backend, enable it again. Bug: angleproject:5056 Tests: angle_end2end_tests --gtest_filter=BufferStorageTestES3*Vulkan Change-Id: If4da2fe2c3e8b098875c89643d366f15fd0ea8b2 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2519875 Commit-Queue: Mohan Maiya <m.maiya@samsung.com> Commit-Queue: Shahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: 's avatarShahbaz Youssefi <syoussefi@chromium.org>
parent 74e50cac
...@@ -178,6 +178,9 @@ void RendererVk::ensureCapsInitialized() const ...@@ -178,6 +178,9 @@ void RendererVk::ensureCapsInitialized() const
mNativeExtensions.setTextureExtensionSupport(mNativeTextureCaps); mNativeExtensions.setTextureExtensionSupport(mNativeTextureCaps);
// Enable GL_EXT_buffer_storage
mNativeExtensions.bufferStorageEXT = true;
// To ensure that ETC2/EAC formats are enabled only on hardware that supports them natively, // To ensure that ETC2/EAC formats are enabled only on hardware that supports them natively,
// this flag is not set by the function above and must be set explicitly. It exposes // this flag is not set by the function above and must be set explicitly. It exposes
// ANGLE_compressed_texture_etc extension string. // ANGLE_compressed_texture_etc extension string.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment