/* * 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. * * Copyright: * 2016-2017, Danny Robson */ #include "./object.hpp" #include "./instance.hpp" #include "./physical_device.hpp" #include using cruft::vk::object; using cruft::vk::enumerated; /////////////////////////////////////////////////////////////////////////////// template object::object (id_t _id): m_id (_id) { CHECK_NEQ (m_id, VK_NULL_HANDLE); } //----------------------------------------------------------------------------- template object::object (object &&rhs): m_id (VK_NULL_HANDLE) { std::swap (m_id, rhs.m_id); } //----------------------------------------------------------------------------- template const typename object::id_t& object::id (void) const& { return m_id; } //----------------------------------------------------------------------------- template typename object::id_t& object::id (void) & { return m_id; } //----------------------------------------------------------------------------- #define OBJECT(T) template struct cruft::vk::object; VK_TYPE_MAP (OBJECT) /////////////////////////////////////////////////////////////////////////////// #define INSTANTIATED(T) template struct cruft::vk::instantiated; VK_INSTANTIATED_TYPE_MAP (INSTANTIATED) /////////////////////////////////////////////////////////////////////////////// template std::vector cruft::vk::enumerated::find (const instance &inst) { // find the total number of objects uint32_t expected = 0; error::try_code (enum_traits::enumerate (inst.id (), &expected, nullptr)); // allocate an array of handles and fetch them uint32_t found = expected; typename T::id_t handles[expected]; error::try_code (enum_traits::enumerate (inst.id (), &found, handles)); // return an collection of objects from the handles return std::vector (handles, handles + found); } //----------------------------------------------------------------------------- #define ENUMERATED(T) template struct cruft::vk::enumerated; VK_ENUMERATED_TYPE_MAP (ENUMERATED)