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.
44 lines
1.2 KiB
Makefile
44 lines
1.2 KiB
Makefile
# Makefile for less.
|
|
# OS/2 version, for emx+gcc compiler
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
CC = gcc -Zomf
|
|
CFLAGS = -I. -O2 -Wall
|
|
LDFLAGS = -s -Zcrtdll
|
|
LIBS = -ltermcap
|
|
O = obj
|
|
|
|
#### End of system configuration section. ####
|
|
|
|
.SUFFIXES: .c .${O}
|
|
|
|
# This rule allows us to supply the necessary -D options
|
|
# in addition to whatever the user asks for.
|
|
.c.${O}:
|
|
${CC} -c ${CPPFLAGS} ${CFLAGS} $<
|
|
|
|
OBJ = \
|
|
main.${O} screen.${O} brac.${O} ch.${O} charset.${O} cmdbuf.${O} \
|
|
command.${O} cvt.${O} decode.${O} edit.${O} filename.${O} forwback.${O} \
|
|
help.${O} ifile.${O} input.${O} jump.${O} lesskey_parse.${O} line.${O} linenum.${O} \
|
|
lsystem.${O} mark.${O} optfunc.${O} option.${O} opttbl.${O} os.${O} \
|
|
output.${O} pattern.${O} position.${O} prompt.${O} search.${O} signal.${O} \
|
|
tags.${O} ttyin.${O} version.${O} xbuf.${O} regexp.${O}
|
|
|
|
all: less.exe lesskey.exe scrsize.exe
|
|
|
|
less.exe: ${OBJ}
|
|
${CC} ${OBJ} -o $@ ${LDFLAGS} ${LIBS}
|
|
|
|
lesskey.exe: lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O}
|
|
${CC} lesskey.${O} lesskey_parse.${O} version.${O} xbuf.${O} -o $@ ${LDFLAGS}
|
|
|
|
scrsize.exe: scrsize.c
|
|
${CC} ${CFLAGS} -D__ST_MT_ERRNO__ -s -Zmtd -lX11 $<
|
|
|
|
${OBJ}: defines.h less.h
|
|
|
|
defines.h: defines.o2
|
|
copy defines.o2 defines.h
|