Lines Matching defs:properties

299 		VkImageFormatProperties	properties;
307 &properties) == VK_ERROR_FORMAT_NOT_SUPPORTED))
312 if ((properties.sampleCounts & m_sampleCount) != m_sampleCount)
370 VkImageFormatProperties properties;
378 &properties) == VK_ERROR_FORMAT_NOT_SUPPORTED))
700 const VkPhysicalDeviceProperties properties = m_context.getDeviceProperties();
702 if (attributeBatchSize > properties.limits.maxVertexInputAttributeOffset)
705 message << "Larger vertex input attribute offset is needed (" << attributeBatchSize << ") than the available maximum (" << properties.limits.maxVertexInputAttributeOffset << ").";
1846 VkPhysicalDeviceProperties properties (context.getDeviceProperties());
1848 if (m_renderSize > properties.limits.maxViewportDimensions[0] || m_renderSize > properties.limits.maxViewportDimensions[1])
1851 if (m_renderSize > properties.limits.maxFramebufferWidth || m_renderSize > properties.limits.maxFramebufferHeight)
2382 VkPhysicalDeviceProperties properties (context.getDeviceProperties());
2384 if (m_renderSize > properties.limits.maxViewportDimensions[0] || m_renderSize > properties.limits.maxViewportDimensions[1])
2387 if (m_renderSize > properties.limits.maxFramebufferWidth || m_renderSize > properties.limits.maxFramebufferHeight)
5925 const VkPhysicalDeviceProperties properties = m_context.getDeviceProperties();
5937 if (attributeBatchSize > properties.limits.maxVertexInputAttributeOffset)
5940 message << "Larger vertex input attribute offset is needed (" << attributeBatchSize << ") than the available maximum (" << properties.limits.maxVertexInputAttributeOffset << ").";
6776 const auto properties = vk::getPhysicalDeviceFormatProperties(context.getInstanceInterface(), context.getPhysicalDevice(), kColorFormat);
6777 if ((properties.optimalTilingFeatures & kColorFeatures) != kColorFeatures)