mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-14 20:30:29 +01:00
(patented) S3TC/DXTC algorithms, but adds an option to dlopen a library module providing functions to do so. Because it uses dlopen, it is only enabled if USE_EXTERNAL_DXTN_LIB=1 is defined (which is only in linux-dri config, so far). It adds support for S3TC to several DRI drivers, and adds a DRI config option to force enabling S3TC even if the software compression/decompression is unavailable. This may allow people to use apps that require S3TC even though they don't have a license to implement the patented material themselves, if those apps use precompressed textures. Ideally we would get permission from the current holder of the patents to implement the algorithm in Mesa, at which point the dlopen mess could go away. Until then, this allows some to run applications they couldn't otherwise, and hopefully will provide us with more push to get the final step of getting that permission done.
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
# -*-makefile-*-
|
|
# Configuration for linux-dri: Linux DRI hardware drivers for XFree86 & others
|
|
|
|
include $(TOP)/configs/default
|
|
|
|
CONFIG_NAME = linux-dri
|
|
|
|
# Compiler and flags
|
|
CC = gcc
|
|
CXX = g++
|
|
|
|
WARN_FLAGS = -Wall
|
|
OPT_FLAGS = -O
|
|
SOURCE_FLAGS = -D_POSIX_SOURCE -D_POSIX_C_SOURCE=199309L -D_SVID_SOURCE \
|
|
-D_BSD_SOURCE -D_GNU_SOURCE
|
|
PIC_FLAGS = -fPIC
|
|
|
|
CFLAGS = -DDRI_NEW_INTERFACE_ONLY $(WARN_FLAGS) -g $(OPT_FLAGS) $(ASM_FLAGS) \
|
|
-std=c99 $(PIC_FLAGS) -ffast-math $(SOURCE_FLAGS) -DPTHREADS \
|
|
-DUSE_EXTERNAL_DXTN_LIB=1 \
|
|
-I/usr/X11R6/include -I/usr/X11R6/include/X11/extensions
|
|
|
|
CXXFLAGS = -DDRI_NEW_INTERFACE_ONLY $(WARN_FLAGS) -g $(OPT_FLAGS) -fPIC \
|
|
$(SOURCE_FLAGS)
|
|
|
|
ASM_SOURCES =
|
|
|
|
# Library/program dependencies
|
|
GL_LIB_DEPS = -L/usr/X11R6/lib -lX11 -lXext -lm -lpthread -lexpat -ldl
|
|
|
|
GLUT_LIB_DEPS = -L$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -L/usr/X11R6/lib -lX11 -lXmu -lXt -lXi -lm
|
|
GLW_LIB_DEPS = -L$(LIB_DIR) -l$(GL_LIB) -L/usr/X11R6/lib -lXt -lX11
|
|
|
|
|
|
# Directories
|
|
SRC_DIRS = mesa glu glut/glx glw
|
|
DRIVER_DIRS = dri
|
|
PROGRAM_DIRS =
|
|
WINDOW_SYSTEM=dri
|
|
|
|
# ffb and gamma are missing because they have not been converted to use the new
|
|
# interface.
|
|
DRI_DIRS = dri_client i810 i830 i915 mach64 mga r128 r200 radeon tdfx \
|
|
unichrome savage sis
|
|
|