mirror of
https://github.com/charles-lunarg/vk-bootstrap.git
synced 2024-11-25 16:24:35 +00:00
Add SwapchainBuilder::set_required_min_image_count(), following suggestions from PR #138
This commit is contained in:
parent
78ee4e67cd
commit
31408e0b9e
@ -1775,7 +1775,12 @@ detail::Result<Swapchain> SwapchainBuilder::build() const {
|
|||||||
auto surface_support = surface_support_ret.value();
|
auto surface_support = surface_support_ret.value();
|
||||||
|
|
||||||
uint32_t image_count;
|
uint32_t image_count;
|
||||||
if (info.min_image_count == 0) {
|
if (info.required_min_image_count >= 1) {
|
||||||
|
if (info.required_min_image_count < surface_support.capabilities.minImageCount)
|
||||||
|
return make_error_code(SwapchainError::required_min_image_count_too_low);
|
||||||
|
|
||||||
|
image_count = info.required_min_image_count;
|
||||||
|
} else if (info.min_image_count == 0) {
|
||||||
image_count = surface_support.capabilities.minImageCount + 1; // This has been the default behavior so far.
|
image_count = surface_support.capabilities.minImageCount + 1; // This has been the default behavior so far.
|
||||||
} else {
|
} else {
|
||||||
image_count = info.min_image_count;
|
image_count = info.min_image_count;
|
||||||
@ -1984,6 +1989,10 @@ SwapchainBuilder& SwapchainBuilder::set_desired_min_image_count(uint32_t min_ima
|
|||||||
info.min_image_count = min_image_count;
|
info.min_image_count = min_image_count;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
SwapchainBuilder& SwapchainBuilder::set_required_min_image_count(uint32_t required_min_image_count) {
|
||||||
|
info.required_min_image_count = required_min_image_count;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
SwapchainBuilder& SwapchainBuilder::set_clipped(bool clipped) {
|
SwapchainBuilder& SwapchainBuilder::set_clipped(bool clipped) {
|
||||||
info.clipped = clipped;
|
info.clipped = clipped;
|
||||||
return *this;
|
return *this;
|
||||||
|
@ -207,6 +207,7 @@ enum class SwapchainError {
|
|||||||
failed_create_swapchain,
|
failed_create_swapchain,
|
||||||
failed_get_swapchain_images,
|
failed_get_swapchain_images,
|
||||||
failed_create_swapchain_image_views,
|
failed_create_swapchain_image_views,
|
||||||
|
required_min_image_count_too_low,
|
||||||
};
|
};
|
||||||
|
|
||||||
std::error_code make_error_code(InstanceError instance_error);
|
std::error_code make_error_code(InstanceError instance_error);
|
||||||
@ -847,17 +848,26 @@ class SwapchainBuilder {
|
|||||||
SwapchainBuilder& set_image_array_layer_count(uint32_t array_layer_count);
|
SwapchainBuilder& set_image_array_layer_count(uint32_t array_layer_count);
|
||||||
|
|
||||||
// Convenient named constants for passing to set_desired_min_image_count().
|
// Convenient named constants for passing to set_desired_min_image_count().
|
||||||
// Note that it is not an `enum class`, so its constants can be passed as an integer value without casting (in other words, these might as well be `static const int`, but they benefit from being grouped together this way).
|
// Note that it is not an `enum class`, so its constants can be passed as an integer value without casting
|
||||||
|
// In other words, these might as well be `static const int`, but they benefit from being grouped together this way.
|
||||||
enum BufferMode {
|
enum BufferMode {
|
||||||
SINGLE_BUFFERING = 1,
|
SINGLE_BUFFERING = 1,
|
||||||
DOUBLE_BUFFERING = 2,
|
DOUBLE_BUFFERING = 2,
|
||||||
TRIPLE_BUFFERING = 3,
|
TRIPLE_BUFFERING = 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Sets the desired minimum image count for the swapchain. Note that the presentation engine is always free to create more images than requested.
|
// Sets the desired minimum image count for the swapchain.
|
||||||
|
// Note that the presentation engine is always free to create more images than requested.
|
||||||
// You may pass one of the values specified in the BufferMode enum, or any integer value.
|
// You may pass one of the values specified in the BufferMode enum, or any integer value.
|
||||||
|
// For instance, if you pass DOUBLE_BUFFERING, the presentation engine is allowed to give you a double buffering setup, triple buffering, or more. This is up to the drivers.
|
||||||
SwapchainBuilder& set_desired_min_image_count(uint32_t min_image_count);
|
SwapchainBuilder& set_desired_min_image_count(uint32_t min_image_count);
|
||||||
|
|
||||||
|
// Sets a required minimum image count for the swapchain.
|
||||||
|
// If the surface capabilities cannot allow it, building the swapchain will result in the `SwapchainError::required_min_image_count_too_low` error.
|
||||||
|
// Otherwise, the same observations from set_desired_min_image_count() apply.
|
||||||
|
// A value of 0 is specially interpreted as meaning "no requirement", and is the behavior by default.
|
||||||
|
SwapchainBuilder& set_required_min_image_count(uint32_t required_min_image_count);
|
||||||
|
|
||||||
// Set whether the Vulkan implementation is allowed to discard rendering operations that
|
// Set whether the Vulkan implementation is allowed to discard rendering operations that
|
||||||
// affect regions of the surface that are not visible. Default is true.
|
// affect regions of the surface that are not visible. Default is true.
|
||||||
// Note: Applications should use the default of true if they do not expect to read back the content
|
// Note: Applications should use the default of true if they do not expect to read back the content
|
||||||
@ -897,6 +907,7 @@ class SwapchainBuilder {
|
|||||||
uint32_t desired_height = 256;
|
uint32_t desired_height = 256;
|
||||||
uint32_t array_layer_count = 1;
|
uint32_t array_layer_count = 1;
|
||||||
uint32_t min_image_count = 0;
|
uint32_t min_image_count = 0;
|
||||||
|
uint32_t required_min_image_count = 0;
|
||||||
VkImageUsageFlags image_usage_flags = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
|
VkImageUsageFlags image_usage_flags = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT;
|
||||||
VkFormatFeatureFlags format_feature_flags = VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT;
|
VkFormatFeatureFlags format_feature_flags = VK_FORMAT_FEATURE_SAMPLED_IMAGE_BIT;
|
||||||
uint32_t graphics_queue_index = 0;
|
uint32_t graphics_queue_index = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user