blob: d06bc461fafb40b2b375df886ecd289fc2b9ec9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Configuration for 16 bits/channel OSMesa library on Linux
include $(TOP)/configs/linux-osmesa
CONFIG_NAME = linux-osmesa16
# Work around aliasing bugs - developers should comment this out
CFLAGS += -fno-strict-aliasing
CXXFLAGS += -fno-strict-aliasing
DEFINES += -DCHAN_BITS=16 -DDEFAULT_SOFTWARE_DEPTH_BITS=32
# Library names
OSMESA_LIB = OSMesa16
# Directories
PROGRAM_DIRS =
# Dependencies
APP_LIB_DEPS = -l$(OSMESA_LIB)
|