org.lwjgl.vulkan.EXTPhysicalDeviceDrm 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 new facilities to query DRM properties for physical devices, enabling users to match Vulkan physical devices with DRM nodes on Linux.
*
* Its functionality closely overlaps with {@code EGL_EXT_device_drm}1. Unlike the EGL extension, this extension does not expose a string containing the name of the device file and instead exposes device minor numbers.
*
* DRM defines multiple device node types. Each physical device may have one primary node and one render node associated. Physical devices may have no primary node (e.g. if the device does not have a display subsystem), may have no render node (e.g. if it is a software rendering engine), or may have neither (e.g. if it is a software rendering engine without a display subsystem).
*
* To query DRM properties for a physical device, chain {@link VkPhysicalDeviceDrmPropertiesEXT} to {@link VkPhysicalDeviceProperties2}.
*
* References
*
*
*
* VK_EXT_physical_device_drm
*
*
* - Name String
* - {@code VK_EXT_physical_device_drm}
* - Extension Type
* - Device extension
* - Registered Extension Number
* - 354
* - Revision
* - 1
* - Extension and Version Dependencies
*
* - Requires Vulkan 1.0
* - Requires {@link KHRGetPhysicalDeviceProperties2 VK_KHR_get_physical_device_properties2}
*
* - Contact
*
* - Simon Ser emersion
*
*
*
* Other Extension Metadata
*
*
* - Last Modified Date
* - 2021-06-09
* - IP Status
* - No known IP claims.
* - Contributors
*
* - Simon Ser
*
*
*/
public final class EXTPhysicalDeviceDrm {
/** The extension specification version. */
public static final int VK_EXT_PHYSICAL_DEVICE_DRM_SPEC_VERSION = 1;
/** The extension name. */
public static final String VK_EXT_PHYSICAL_DEVICE_DRM_EXTENSION_NAME = "VK_EXT_physical_device_drm";
/** Extends {@code VkStructureType}. */
public static final int VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRM_PROPERTIES_EXT = 1000353000;
private EXTPhysicalDeviceDrm() {}
}