Hash :
e00ad443
Author :
Date :
2021-11-15T20:16:16
Add EGL_ANGLE_vulkan_image extension This extension is for exporting VkImage from EGLImage. The VkImage must be used with the same VkDevice used by ANGLE Vulkan backend. Bug: chromium:1264439 Change-Id: I222d900465cf2716d94fc64f06e240390ec518ac Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3285025 Reviewed-by: Shahbaz Youssefi <syoussefi@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org> Commit-Queue: Peng Huang <penghuang@chromium.org>
//
// Copyright 2021 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// ImageImpl.cpp: Defines the rx::ImageImpl class representing the EGLimage object.
#include "libANGLE/renderer/ImageImpl.h"
namespace rx
{
egl::Error ImageImpl::exportVkImage(void *vkImage, void *vkImageCreateInfo)
{
UNIMPLEMENTED();
return egl::EglBadAccess();
}
} // namespace rx