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

org.lwjgl.vulkan.EXTLoadStoreOpNone 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 incorporates {@link #VK_ATTACHMENT_STORE_OP_NONE_EXT ATTACHMENT_STORE_OP_NONE_EXT} from {@link QCOMRenderPassStoreOps VK_QCOM_render_pass_store_ops}, enabling applications to avoid unnecessary synchronization when an attachment is not written during a render pass.
 * 
 * 

Additionally, {@link #VK_ATTACHMENT_LOAD_OP_NONE_EXT ATTACHMENT_LOAD_OP_NONE_EXT} is introduced to avoid unnecessary synchronization when an attachment is not used during a render pass at all. In combination with {@link #VK_ATTACHMENT_STORE_OP_NONE_EXT ATTACHMENT_STORE_OP_NONE_EXT}, this is useful as an alternative to preserve attachments in applications that cannot decide if an attachment will be used in a render pass until after the necessary pipelines have been created.

* *
VK_EXT_load_store_op_none
* *
*
Name String
*
{@code VK_EXT_load_store_op_none}
*
Extension Type
*
Device extension
*
Registered Extension Number
*
401
*
Revision
*
1
*
Extension and Version Dependencies
*
    *
  • Requires Vulkan 1.0
  • *
*
Contact
*
*
* *
Other Extension Metadata
* *
*
Last Modified Date
*
2021-06-06
*
Contributors
*
    *
  • Shahbaz Youssefi, Google
  • *
  • Bill Licea-Kane, Qualcomm Technologies, Inc.
  • *
  • Tobias Hector, AMD
  • *
*
*/ public final class EXTLoadStoreOpNone { /** The extension specification version. */ public static final int VK_EXT_LOAD_STORE_OP_NONE_SPEC_VERSION = 1; /** The extension name. */ public static final String VK_EXT_LOAD_STORE_OP_NONE_EXTENSION_NAME = "VK_EXT_load_store_op_none"; /** Extends {@code VkAttachmentLoadOp}. */ public static final int VK_ATTACHMENT_LOAD_OP_NONE_EXT = 1000400000; /** Extends {@code VkAttachmentStoreOp}. */ public static final int VK_ATTACHMENT_STORE_OP_NONE_EXT = 1000301000; private EXTLoadStoreOpNone() {} }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy