org.lwjgl.vulkan.KHR8bitStorage 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_8bit_storage} extension allows use of 8-bit types in uniform and storage buffers, and push constant blocks. This extension introduces several new optional features which map to SPIR-V capabilities and allow access to 8-bit data in {@code Block}-decorated objects in the {@code Uniform} and the {@code StorageBuffer} storage classes, and objects in the {@code PushConstant} storage class.
*
* The {@code StorageBuffer8BitAccess} capability must be supported by all implementations of this extension. The other capabilities are optional.
*
* Promotion to Vulkan 1.2
*
* 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 StorageBuffer8BitAccess} capability is optional. The original type, enum and command names are still available as aliases of the core functionality.
*
* VK_KHR_8bit_storage
*
*
* - Name String
* - {@code VK_KHR_8bit_storage}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 178
* - Revision
* - 1
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
* - Requires {@link KHRGetPhysicalDeviceProperties2 VK_KHR_get_physical_device_properties2}
* - Requires {@link KHRStorageBufferStorageClass VK_KHR_storage_buffer_storage_class}
*
* - Deprecation state
*
* - Promoted to Vulkan 1.2
*
* - Contact
*
* - Alexander Galazin alegal-arm
*
*
*
* Other Extension Metadata
*
*
* - Last Modified Date
* - 2018-02-05
* - Interactions and External Dependencies
*
* - Promoted to Vulkan 1.2 Core
* - This extension requires {@code SPV_KHR_8bit_storage}
* - This extension provides API support for {@code GL_EXT_shader_16bit_storage}
*
* - IP Status
* - No known IP claims.
* - Contributors
*
* - Alexander Galazin, Arm
*
*
*/
public final class KHR8bitStorage {
/** The extension specification version. */
public static final int VK_KHR_8BIT_STORAGE_SPEC_VERSION = 1;
/** The extension name. */
public static final String VK_KHR_8BIT_STORAGE_EXTENSION_NAME = "VK_KHR_8bit_storage";
/** Extends {@code VkStructureType}. */
public static final int VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_8BIT_STORAGE_FEATURES_KHR = 1000177000;
private KHR8bitStorage() {}
}