7686729069
Extract protocol-agnostic FenceTimeline from Intel to shared src/drivers/fence.rs — atomic-based fence tracking suitable for Intel, VIRGL, and AMD drivers. Extract protocol-agnostic SyncobjManager from Intel to shared src/drivers/syncobj.rs — syncobj create/destroy/signal/reset/ wait/query and sync_file fd export/import. Wire both into VirtioDriver: - Add FenceTimeline + SyncobjManager fields - Implement all 5 GpuDriver syncobj trait methods (create, destroy, wait, export_fd, import_fd) - Track fence seqnos in virgl_submit_3d (allocate before submit, signal after completion) Intel fence.rs and syncobj.rs converted to thin re-export modules pointing at shared sources — no behavioral change for Intel driver. This gives Mesa VIRGL userspace the standard DRM syncobj API for GPU/compositor synchronization.
22 lines
893 B
Plaintext
22 lines
893 B
Plaintext
#------------------------------------------------------------------------------
|
|
# $File: make,v 1.5 2022/03/12 15:09:47 christos Exp $
|
|
# make: file(1) magic for makefiles
|
|
#
|
|
# URL: https://en.wikipedia.org/wiki/Make_(software)
|
|
0 regex/100l \^(CFLAGS|VPATH|LDFLAGS|all:|\\.PRECIOUS) makefile script text
|
|
!:mime text/x-makefile
|
|
!:strength -15
|
|
# Update: Joerg Jenderek
|
|
# Reference: https://www.freebsd.org/cgi/man.cgi?make(1)
|
|
# exclude grub-core\lib\libgcrypt\mpi\Makefile.am with "#BEGIN_ASM_LIST"
|
|
# by additional escaping point character
|
|
# exclude MS Windows help file CoNtenT with ":include FOOBAR.CNT"
|
|
# and NSIS script with "!include" by additional escaping point character
|
|
0 regex/100l \^\\.(BEGIN|endif|include) BSD makefile script text
|
|
!:mime text/x-makefile
|
|
!:ext /mk
|
|
!:strength -10
|
|
0 regex/100l \^SUBDIRS[[:space:]]+= automake makefile script text
|
|
!:mime text/x-makefile
|
|
!:strength -15
|