mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-17 18:18:06 +02:00
Atteched output from git commit:
rename src/gallium/{winsys/drm => targets}/Makefile.egl (100%)
rename src/gallium/{winsys/drm/intel/egl => targets/egl-i915}/Makefile (86%)
rename src/gallium/{winsys/drm/i965/egl => targets/egl-i915}/dummy.c (100%)
rename src/gallium/{winsys/drm/i965/egl => targets/egl-i965}/Makefile (86%)
rename src/gallium/{winsys/drm/intel/egl => targets/egl-i965}/dummy.c (100%)
rename src/gallium/{winsys/drm/nouveau/egl => targets/egl-nouveau}/Makefile (88%)
rename src/gallium/{winsys/drm/nouveau/egl => targets/egl-nouveau}/dummy.c (100%)
rename src/gallium/{winsys/drm/radeon/egl => targets/egl-radeon}/Makefile (87%)
rename src/gallium/{winsys/drm/radeon/egl => targets/egl-radeon}/dummy.c (100%)
create mode 100644 src/gallium/targets/egl-swrast/Makefile
create mode 100644 src/gallium/targets/egl-swrast/swrast_glue.c
rename src/gallium/{winsys/drm/vmware/egl => targets/egl-vmwgfx}/Makefile (86%)
rename src/gallium/{winsys/drm/swrast/egl => targets/egl-vmwgfx}/dummy.c (100%)
delete mode 100644 src/gallium/winsys/drm/swrast/Makefile
delete mode 100644 src/gallium/winsys/drm/swrast/core/Makefile
delete mode 100644 src/gallium/winsys/drm/swrast/core/swrast_drm_api.c
delete mode 100644 src/gallium/winsys/drm/swrast/egl/Makefile
delete mode 100644 src/gallium/winsys/drm/vmware/egl/dummy.c
28 lines
630 B
Text
28 lines
630 B
Text
# Configuration for OpenGL ES on Linux
|
|
|
|
include $(TOP)/configs/linux
|
|
|
|
CONFIG_NAME = linux-opengl-es
|
|
|
|
# Directories to build
|
|
LIB_DIR = lib
|
|
SRC_DIRS = egl glsl mesa/es gallium gallium/winsys gallium/targets
|
|
PROGRAM_DIRS = es1/screen es1/xegl es2/xegl
|
|
|
|
# egl st needs this
|
|
DEFINES += -DGLX_DIRECT_RENDERING
|
|
|
|
# no mesa or egl drivers
|
|
DRIVER_DIRS =
|
|
EGL_DRIVERS_DIRS =
|
|
|
|
GALLIUM_DRIVERS_DIRS = softpipe
|
|
|
|
# build libGLES*.so
|
|
GALLIUM_STATE_TRACKERS_DIRS = es
|
|
|
|
# build egl_x11_{swrast,i915}.so
|
|
GALLIUM_DRIVERS_DIRS += trace i915
|
|
GALLIUM_STATE_TRACKERS_DIRS += egl
|
|
GALLIUM_WINSYS_DIRS += drm/intel
|
|
GALLIUM_TARGET_DIRS += egl-swrast egl-i915
|