From 9ac6c02fb2af44cbe7e4e8dc6057333cd0bdaa42 Mon Sep 17 00:00:00 2001 From: Peng Huang Date: Wed, 10 May 2023 13:03:32 +0000 Subject: [PATCH] d3d11: support external image Bug: dawn:1724 Change-Id: I80e397331672a611a1bc2d805187b9c01c2e0530 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/132360 Kokoro: Kokoro Commit-Queue: Peng Huang Reviewed-by: Corentin Wallez --- src/dawn/native/d3d11/PhysicalDeviceD3D11.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/dawn/native/d3d11/PhysicalDeviceD3D11.cpp b/src/dawn/native/d3d11/PhysicalDeviceD3D11.cpp index 37adc7863d..58cbddaed0 100644 --- a/src/dawn/native/d3d11/PhysicalDeviceD3D11.cpp +++ b/src/dawn/native/d3d11/PhysicalDeviceD3D11.cpp @@ -69,8 +69,7 @@ PhysicalDevice::PhysicalDevice(Backend* backend, PhysicalDevice::~PhysicalDevice() = default; bool PhysicalDevice::SupportsExternalImages() const { - // TODO(dawn:1724): Implement external images on D3D11. - return false; + return true; } bool PhysicalDevice::SupportsFeatureLevel(FeatureLevel featureLevel) const {