org.lwjgl.vulkan.KHRPresentId 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 allows an application that uses the {@link KHRSwapchain VK_KHR_swapchain} extension to provide an identifier for present operations on a swapchain. An application can use this to reference specific present operations in other extensions.
*
* VK_KHR_present_id
*
*
* - Name String
* - {@code VK_KHR_present_id}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 295
* - Revision
* - 1
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
* - Requires {@link KHRSwapchain VK_KHR_swapchain}
*
* - Contact
*
* - Keith Packard keithp
*
*
*
* Other Extension Metadata
*
*
* - Last Modified Date
* - 2019-05-15
* - IP Status
* - No known IP claims.
* - Contributors
*
* - Keith Packard, Valve
* - Ian Elliott, Google
* - Alon Or-bach, Samsung
*
*
*/
public final class KHRPresentId {
/** The extension specification version. */
public static final int VK_KHR_PRESENT_ID_SPEC_VERSION = 1;
/** The extension name. */
public static final String VK_KHR_PRESENT_ID_EXTENSION_NAME = "VK_KHR_present_id";
/**
* Extends {@code VkStructureType}.
*
* Enum values:
*
*
* - {@link #VK_STRUCTURE_TYPE_PRESENT_ID_KHR STRUCTURE_TYPE_PRESENT_ID_KHR}
* - {@link #VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENT_ID_FEATURES_KHR STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENT_ID_FEATURES_KHR}
*
*/
public static final int
VK_STRUCTURE_TYPE_PRESENT_ID_KHR = 1000294000,
VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENT_ID_FEATURES_KHR = 1000294001;
private KHRPresentId() {}
}