org.lwjgl.vulkan.EXTYcbcr2plane444Formats 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 extension adds some Y′CBCR formats that are in common use for video encode and decode, but were not part of the {@link KHRSamplerYcbcrConversion VK_KHR_sampler_ycbcr_conversion} extension.
*
* VK_EXT_ycbcr_2plane_444_formats
*
*
* - Name String
* - {@code VK_EXT_ycbcr_2plane_444_formats}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 331
* - Revision
* - 1
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
* - Requires {@link KHRSamplerYcbcrConversion VK_KHR_sampler_ycbcr_conversion}
*
* - Contact
*
* - Tony Zlatinski tzlatinski
*
*
*
* Other Extension Metadata
*
*
* - Last Modified Date
* - 2020-07-28
* - IP Status
* - No known IP claims.
* - Contributors
*
* - Piers Daniell, NVIDIA
* - Ping Liu, Intel
*
*
*/
public final class EXTYcbcr2plane444Formats {
/** The extension specification version. */
public static final int VK_EXT_YCBCR_2PLANE_444_FORMATS_SPEC_VERSION = 1;
/** The extension name. */
public static final String VK_EXT_YCBCR_2PLANE_444_FORMATS_EXTENSION_NAME = "VK_EXT_ycbcr_2plane_444_formats";
/** Extends {@code VkStructureType}. */
public static final int VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_YCBCR_2_PLANE_444_FORMATS_FEATURES_EXT = 1000330000;
/**
* Extends {@code VkFormat}.
*
* Enum values:
*
*
* - {@link #VK_FORMAT_G8_B8R8_2PLANE_444_UNORM_EXT FORMAT_G8_B8R8_2PLANE_444_UNORM_EXT}
* - {@link #VK_FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16_EXT FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16_EXT}
* - {@link #VK_FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16_EXT FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16_EXT}
* - {@link #VK_FORMAT_G16_B16R16_2PLANE_444_UNORM_EXT FORMAT_G16_B16R16_2PLANE_444_UNORM_EXT}
*
*/
public static final int
VK_FORMAT_G8_B8R8_2PLANE_444_UNORM_EXT = 1000330000,
VK_FORMAT_G10X6_B10X6R10X6_2PLANE_444_UNORM_3PACK16_EXT = 1000330001,
VK_FORMAT_G12X4_B12X4R12X4_2PLANE_444_UNORM_3PACK16_EXT = 1000330002,
VK_FORMAT_G16_B16R16_2PLANE_444_UNORM_EXT = 1000330003;
private EXTYcbcr2plane444Formats() {}
}