2017-05-26 16:33:05 +10:00
|
|
|
/*
|
|
|
|
* 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:
|
|
|
|
* 2017, Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "./ostream.hpp"
|
|
|
|
|
|
|
|
#include "./instance.hpp"
|
|
|
|
#include "./physical_device.hpp"
|
|
|
|
|
|
|
|
#include <iomanip>
|
|
|
|
#include <cruft/util/iterator.hpp>
|
|
|
|
|
|
|
|
|
2017-09-01 13:12:51 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, VkExtent2D val)
|
|
|
|
{
|
|
|
|
return os << "[ " << val.width << ", " << val.height << " ]";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, VkExtent3D val)
|
|
|
|
{
|
|
|
|
return os << "[ " << val.width << ", " << val.height << ", " << val.depth << "]";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-04 14:49:38 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#if 0
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, VkQueueFlags val)
|
|
|
|
{
|
|
|
|
const char *names[4] = {};
|
|
|
|
int cursor = 0;
|
|
|
|
|
|
|
|
if (val & VK_QUEUE_GRAPHICS_BIT) names[cursor++] = "GRAPHICS";
|
|
|
|
if (val & VK_QUEUE_COMPUTE_BIT) names[cursor++] = "COMPUTE";
|
|
|
|
if (val & VK_QUEUE_TRANSFER_BIT) names[cursor++] = "TRANSFER";
|
|
|
|
if (val & VK_QUEUE_SPARSE_BINDING_BIT) names[cursor++] = "SPARSE_BINDING";
|
|
|
|
|
|
|
|
return os << "[ " << util::make_infix (util::make_view (names, names + cursor)) << " ]";
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2017-05-26 16:33:05 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
static
|
|
|
|
std::ostream&
|
|
|
|
write_version (std::ostream &os, uint32_t version)
|
|
|
|
{
|
|
|
|
static constexpr uint32_t MAJOR_BITS = 10;
|
|
|
|
static constexpr uint32_t MINOR_BITS = 10;
|
|
|
|
static constexpr uint32_t PATCH_BITS = 12;
|
|
|
|
static_assert (MAJOR_BITS + MINOR_BITS + PATCH_BITS == sizeof (version) * 8);
|
|
|
|
|
|
|
|
uint32_t major, minor, patch;
|
|
|
|
|
|
|
|
patch = version & ((1 << PATCH_BITS) - 1); version >>= PATCH_BITS;
|
|
|
|
minor = version & ((1 << MINOR_BITS) - 1); version >>= MINOR_BITS;
|
|
|
|
major = version & ((1 << MAJOR_BITS) - 1); version >>= MAJOR_BITS;
|
|
|
|
|
|
|
|
return os << +major << '.' << +minor << '.' << +patch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::ostream&
|
|
|
|
cruft::vk::operator<< (std::ostream &os, const instance &i)
|
|
|
|
{
|
|
|
|
os << "{ extensions: [ ";
|
|
|
|
|
|
|
|
const auto &extensions = i.extensions ();
|
|
|
|
std::copy (std::cbegin (extensions),
|
|
|
|
std::cend (extensions),
|
|
|
|
util::infix_iterator<std::string> (os, ", "));
|
|
|
|
|
|
|
|
return os << " ] }";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-09-05 17:20:17 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, const VkLayerProperties &val)
|
|
|
|
{
|
|
|
|
return os << "{ name: '" << val.layerName << "'"
|
|
|
|
<< ", specVersion: " << val.specVersion
|
|
|
|
<< ", implementationVersion: " << val.implementationVersion
|
|
|
|
<< ", description: '" << val.description << "'"
|
|
|
|
<< " }";
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2017-05-26 16:33:05 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, VkPhysicalDeviceType t)
|
|
|
|
{
|
|
|
|
switch (t) {
|
|
|
|
case VK_PHYSICAL_DEVICE_TYPE_OTHER: return os << "other";
|
|
|
|
case VK_PHYSICAL_DEVICE_TYPE_INTEGRATED_GPU: return os << "integrated-gpu";
|
|
|
|
case VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU: return os << "discrete-gpu";
|
|
|
|
case VK_PHYSICAL_DEVICE_TYPE_VIRTUAL_GPU: return os << "virtual-gpu";
|
|
|
|
case VK_PHYSICAL_DEVICE_TYPE_CPU: return os << "cpu";
|
|
|
|
}
|
|
|
|
|
|
|
|
return os << "unknown-" << +static_cast<std::underlying_type_t<decltype(t)>> (t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, const VkPhysicalDeviceLimits &l)
|
|
|
|
{
|
|
|
|
return os
|
|
|
|
<< "{ max_image: [ " << l.maxImageDimension1D
|
|
|
|
<< ", " << l.maxImageDimension2D
|
|
|
|
<< ", " << l.maxImageDimension3D
|
|
|
|
<< " ]"
|
|
|
|
<< " }";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, const VkPhysicalDeviceProperties &p)
|
|
|
|
{
|
|
|
|
os << "{ api: "; write_version (os, p.apiVersion);
|
|
|
|
os << ", driver: "; write_version (os, p.driverVersion);
|
|
|
|
os << ", vendor: 0x" << std::hex << std::setw (4) << std::setfill ('0') << p.vendorID << std::dec;
|
|
|
|
os << ", device: 0x" << std::hex << std::setw (4) << std::setfill ('0') << p.deviceID << std::dec;
|
|
|
|
os << ", name: '" << p.deviceName << "'";
|
|
|
|
os << ", type: " << p.deviceType;
|
|
|
|
os << ", limits: " << p.limits;
|
|
|
|
os << " }";
|
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, const VkPhysicalDeviceFeatures &f)
|
|
|
|
{
|
|
|
|
os << "[ ";
|
|
|
|
if (f.geometryShader) os << "GEOMETRY_SHADER ";
|
|
|
|
return os << "]";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::ostream&
|
|
|
|
cruft::vk::operator<< (std::ostream &os, const physical_device &d)
|
|
|
|
{
|
2017-09-01 13:36:47 +10:00
|
|
|
return os << "physical_device { "
|
|
|
|
<< "extensions: [ " << util::make_infix (d.extensions ()) << " ]"
|
|
|
|
<< ", properties: " << d.properties ()
|
|
|
|
<< ", features: " << d.features ()
|
|
|
|
<< ", queues: [ " << util::make_infix (d.queue_families ()) << " ]"
|
|
|
|
<< " }";
|
2017-09-01 13:12:51 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::ostream&
|
|
|
|
operator<< (std::ostream &os, const VkQueueFamilyProperties &val)
|
|
|
|
{
|
|
|
|
return os << "{ flags: " << val.queueFlags
|
|
|
|
<< ", count: " << val.queueCount
|
|
|
|
<< ", granularity: " << val.minImageTransferGranularity
|
|
|
|
<< " }";
|
|
|
|
};
|