mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-24 21:50:15 +01:00
The render extension uses many matrix operations internally, this change exposes those functions to other parts of the server, drivers and extensions. The change is motivated by the 'transform' additions to the RandR extension but will likely be useful elsewhere.
21 lines
321 B
Makefile
21 lines
321 B
Makefile
noinst_LTLIBRARIES = librender.la
|
|
|
|
AM_CFLAGS = $(DIX_CFLAGS)
|
|
|
|
librender_la_SOURCES = \
|
|
animcur.c \
|
|
filter.c \
|
|
glyph.c \
|
|
matrix.c \
|
|
miindex.c \
|
|
mipict.c \
|
|
mirect.c \
|
|
mitrap.c \
|
|
mitri.c \
|
|
picture.c \
|
|
render.c \
|
|
renderedge.c
|
|
|
|
if XORG
|
|
sdk_HEADERS = picture.h mipict.h glyphstr.h picturestr.h renderedge.h
|
|
endif
|