org.lwjgl.vulkan.EXTValidationFlags 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 provides the {@link VkValidationFlagsEXT} struct that can be included in the {@code pNext} chain of the {@link VkInstanceCreateInfo} structure passed as the {@code pCreateInfo} parameter of {@link VK10#vkCreateInstance CreateInstance}. The new struct contains an array of {@code VkValidationCheckEXT} values that will be disabled by the validation layers.
*
*
* - Name String
* - {@code VK_EXT_validation_flags}
* - Extension Type
* - Instance extension
* - Registered Extension Number
* - 62
* - Revision
* - 1
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
*
* - Contact
*
* - Tobin Ehlis @tobine
*
* - Last Modified Date
* - 2016-09-06
* - IP Status
* - No known IP claims.
* - Contributors
*
* - Tobin Ehlis, Google
* - Courtney Goeltzenleuchter, Google
*
*
*/
public final class EXTValidationFlags {
/** The extension specification version. */
public static final int VK_EXT_VALIDATION_FLAGS_SPEC_VERSION = 1;
/** The extension name. */
public static final String VK_EXT_VALIDATION_FLAGS_EXTENSION_NAME = "VK_EXT_validation_flags";
/** Extends {@code VkStructureType}. */
public static final int VK_STRUCTURE_TYPE_VALIDATION_FLAGS_EXT = 1000061000;
/**
* VkValidationCheckEXT - Specify validation checks to disable
*
* Description
*
*
* - {@link #VK_VALIDATION_CHECK_ALL_EXT VALIDATION_CHECK_ALL_EXT} specifies that all validation checks are disabled.
* - {@link #VK_VALIDATION_CHECK_SHADERS_EXT VALIDATION_CHECK_SHADERS_EXT} specifies that shader validation is disabled.
*
*
* See Also
*
* {@link VkValidationFlagsEXT}
*/
public static final int
VK_VALIDATION_CHECK_ALL_EXT = 0,
VK_VALIDATION_CHECK_SHADERS_EXT = 1;
private EXTValidationFlags() {}
}