/*------------------------------------------------------------------------- * Vulkan CTS Framework * -------------------- * * Copyright (c) 2019 Google Inc. * Copyright (c) 2019 The Khronos Group Inc. * Copyright (c) 2017 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *//*! * \file * \brief YCbCR Image backed with memory *//*--------------------------------------------------------------------*/ #include "vkYCbCrImageWithMemory.hpp" #include "vkQueryUtil.hpp" #include "vkImageUtil.hpp" namespace vk { YCbCrImageWithMemory::YCbCrImageWithMemory (const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkImageCreateInfo& imageCreateInfo, const vk::MemoryRequirement requirement) : m_image (createImage(vk, device, &imageCreateInfo)) { if ((imageCreateInfo.flags & VK_IMAGE_CREATE_DISJOINT_BIT) != 0) { const deUint32 numPlanes = getPlaneCount(imageCreateInfo.format); bindImagePlanesMemory(vk, device, *m_image, numPlanes, m_allocations, allocator, requirement); } else { const VkMemoryRequirements reqs = getImageMemoryRequirements(vk, device, *m_image); m_allocations.push_back(AllocationSp(allocator.allocate(reqs, requirement).release())); VK_CHECK(vk.bindImageMemory(device, *m_image, m_allocations.back()->getMemory(), m_allocations.back()->getOffset())); } } } // vk