org.lwjgl.vulkan.KHRVulkanMemoryModel 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;
/**
* The {@code VK_KHR_vulkan_memory_model} extension allows use of the Vulkan Memory Model, which formally defines how to synchronize memory accesses to the same memory locations performed by multiple shader invocations.
*
* Note
*
* Version 3 of the spec added a member ({@code vulkanMemoryModelAvailabilityVisibilityChains}) to {@link VkPhysicalDeviceVulkanMemoryModelFeaturesKHR}, which is an incompatible change from version 2.
*
*
* Promotion to Vulkan 1.2
*
* All functionality in this extension is included in core Vulkan 1.2, with the KHR suffix omitted. However, if Vulkan 1.2 is supported and this extension is not, the {@code vulkanMemoryModel} capability is optional. The original type, enum and command names are still available as aliases of the core functionality.
*
* VK_KHR_vulkan_memory_model
*
*
* - Name String
* - {@code VK_KHR_vulkan_memory_model}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 212
* - Revision
* - 3
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
*
* - Deprecation state
*
* - Promoted to Vulkan 1.2
*
* - Contact
*
* - Jeff Bolz jeffbolznv
*
*
*
* Other Extension Metadata
*
*
* - Last Modified Date
* - 2018-12-10
* - IP Status
* - No known IP claims.
* - Interactions and External Dependencies
*
* - Promoted to Vulkan 1.2 Core
* - This extension requires {@code SPV_KHR_vulkan_memory_model}
*
* - Contributors
*
* - Jeff Bolz, NVIDIA
* - Alan Baker, Google
* - Tobias Hector, AMD
* - David Neto, Google
* - Robert Simpson, Qualcomm Technologies, Inc.
* - Brian Sumner, AMD
*
*
*/
public final class KHRVulkanMemoryModel {
/** The extension specification version. */
public static final int VK_KHR_VULKAN_MEMORY_MODEL_SPEC_VERSION = 3;
/** The extension name. */
public static final String VK_KHR_VULKAN_MEMORY_MODEL_EXTENSION_NAME = "VK_KHR_vulkan_memory_model";
/** Extends {@code VkStructureType}. */
public static final int VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_MEMORY_MODEL_FEATURES_KHR = 1000211000;
private KHRVulkanMemoryModel() {}
}