From ca75c7bbde33376d8994128494e4b2498416ebaa Mon Sep 17 00:00:00 2001 From: Shahbaz Youssefi Date: Wed, 29 Sep 2021 16:28:11 -0400 Subject: [PATCH] Vulkan: Fix async queue testing Due to a feature renaming, the async queue tests where actually ran without the required feature that makes them async. This change fixes the feature name so async queue testing will be resumed. Bug: angleproject:6437 Change-Id: I73c9c8cd196576455265f72144399a93edc82bdf Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3193420 Reviewed-by: Shahbaz Youssefi Commit-Queue: Shahbaz Youssefi --- util/EGLWindow.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/util/EGLWindow.cpp b/util/EGLWindow.cpp index 02222813b..d61e3753e 100644 --- a/util/EGLWindow.cpp +++ b/util/EGLWindow.cpp @@ -273,9 +273,7 @@ bool EGLWindow::initializeDisplay(OSWindow *osWindow, if (params.asyncCommandQueueFeatureVulkan == EGL_TRUE) { - // TODO(jmadill): Update feature names. b/172704839 - enabledFeatureOverrides.push_back("commandProcessor"); - enabledFeatureOverrides.push_back("asynchronousCommandProcessing"); + enabledFeatureOverrides.push_back("asyncCommandQueue"); } if (params.generateSPIRVThroughGlslang == EGL_TRUE)