org.lwjgl.vulkan.EXTExternalMemoryDmaBuf 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;
/**
* A {@code dma_buf} is a type of file descriptor, defined by the Linux kernel, that allows sharing memory across kernel device drivers and across processes. This extension enables applications to import a {@code dma_buf} as {@code VkDeviceMemory}, to export {@code VkDeviceMemory} as a {@code dma_buf}, and to create {@code VkBuffer} objects that can be bound to that memory.
*
* VK_EXT_external_memory_dma_buf
*
*
* - Name String
* - {@code VK_EXT_external_memory_dma_buf}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 126
* - Revision
* - 1
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
* - Requires {@link KHRExternalMemoryFd VK_KHR_external_memory_fd}
*
* - Contact
*
* - Chad Versace chadversary
*
*
*
* Other Extension Metadata
*
*
* - Last Modified Date
* - 2017-10-10
* - IP Status
* - No known IP claims.
* - Contributors
*
* - Chad Versace, Google
* - James Jones, NVIDIA
* - Jason Ekstrand, Intel
*
*
*/
public final class EXTExternalMemoryDmaBuf {
/** The extension specification version. */
public static final int VK_EXT_EXTERNAL_MEMORY_DMA_BUF_SPEC_VERSION = 1;
/** The extension name. */
public static final String VK_EXT_EXTERNAL_MEMORY_DMA_BUF_EXTENSION_NAME = "VK_EXT_external_memory_dma_buf";
/** Extends {@code VkExternalMemoryHandleTypeFlagBits}. */
public static final int VK_EXTERNAL_MEMORY_HANDLE_TYPE_DMA_BUF_BIT_EXT = 0x200;
private EXTExternalMemoryDmaBuf() {}
}