org.lwjgl.vulkan.KHRIncrementalPresent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-vulkan Show documentation
Show all versions of lwjgl-vulkan Show documentation
A new generation graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs used in a wide variety of devices from PCs and consoles to mobile phones and embedded platforms.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.vulkan;
/**
* This device extension extends {@code vkQueuePresentKHR}, from the {@code VK_KHR_swapchain} extension, allowing an application to specify a list of rectangular, modified regions of each image to present. This should be used in situations where an application is only changing a small portion of the presentable images within a swapchain, since it enables the presentation engine to avoid wasting time presenting parts of the surface that haven't changed.
*
* This extension is leveraged from the {@code EGL_KHR_swap_buffers_with_damage} extension.
*
* Examples
*
* None.
*
*
* - Name String
* - {@code VK_KHR_incremental_present}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 85
* - Revision
* - 1
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
* - Requires {@code VK_KHR_swapchain}
*
* - Contact
*
* - Ian Elliott mailto:[email protected][[email protected]]
*
* - Last Modified Date
* - 2016-11-02
* - IP Status
* - No known IP claims.
* - Contributors
*
* - Ian Elliott, Google
* - Jesse Hall, Google
* - Alon Or-bach, Samsung
* - James Jones, NVIDIA
* - Daniel Rakos, AMD
* - Ray Smith, ARM
* - Mika Isojarvi, Google
* - Jeff Juliano, NVIDIA
* - Jeff Bolz, NVIDIA
*
*
*/
public final class KHRIncrementalPresent {
/** The extension specification version. */
public static final int VK_KHR_INCREMENTAL_PRESENT_SPEC_VERSION = 1;
/** The extension name. */
public static final String VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME = "VK_KHR_incremental_present";
/** Extends {@code VkStructureType}. */
public static final int VK_STRUCTURE_TYPE_PRESENT_REGIONS_KHR = 1000084000;
private KHRIncrementalPresent() {}
}