diff options
author | Chia-I Wu <[email protected]> | 2009-11-06 16:27:19 +0800 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-11-06 14:19:24 -0700 |
commit | 97ea8e9263814634d2f718c82fb58464d20683f8 (patch) | |
tree | 66b83e9e4253b9f7d07afdc72d87040800e85713 | |
parent | 1046f70a7d0592aaf10837ff9d2523de53910a31 (diff) |
Add new config for OpenGL ES.
Signed-off-by: Chia-I Wu <[email protected]>
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | configs/linux-opengl-es | 21 |
2 files changed, 22 insertions, 0 deletions
@@ -126,6 +126,7 @@ linux-ia64-icc-static \ linux-icc \ linux-icc-static \ linux-llvm \ +linux-opengl-es \ linux-osmesa \ linux-osmesa-static \ linux-osmesa16 \ diff --git a/configs/linux-opengl-es b/configs/linux-opengl-es new file mode 100644 index 00000000000..2ba94b61de5 --- /dev/null +++ b/configs/linux-opengl-es @@ -0,0 +1,21 @@ +# Configuration for OpenGL ES on Linux + +include $(TOP)/configs/linux + +CONFIG_NAME = linux-opengl-es + +# Directories to build +LIB_DIR = lib +SRC_DIRS = egl mesa/es gallium gallium/winsys +PROGRAM_DIRS = es1/xegl es2/xegl + +# no mesa or egl drivers +DRIVER_DIRS = +EGL_DRIVERS_DIRS = + +GALLIUM_DRIVERS_DIRS = softpipe + +# build egl_softpipe.so +GALLIUM_WINSYS_DIRS = egl_xlib +# and libGLES*.so +GALLIUM_STATE_TRACKERS_DIRS = es |