All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.vulkan.EXTValidationFlags Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 3.3.4
Show newest version
/*
 * 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 structure contains an array of {@code VkValidationCheckEXT} values that will be disabled by the validation layers.
 * 
 * 
Deprecation by {@code VK_EXT_validation_features}
* *

Functionality in this extension is subsumed into the {@link EXTValidationFeatures VK_EXT_validation_features} extension.

* *
VK_EXT_validation_flags
* *
*
Name String
*
{@code VK_EXT_validation_flags}
*
Extension Type
*
Instance extension
*
Registered Extension Number
*
62
*
Revision
*
2
*
Extension and Version Dependencies
*
    *
  • Requires Vulkan 1.0
  • *
*
Deprecation state
*
    *
  • Deprecated by {@link EXTValidationFeatures VK_EXT_validation_features} extension
  • *
*
Special Use
*
*
Contact
*
*
* *
Other Extension Metadata
* *
*
Last Modified Date
*
2019-08-19
*
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 = 2; /** 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() {} }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy