Skip to content

Commit

Permalink
Enable EGL client APIs.
Browse files Browse the repository at this point in the history
  • Loading branch information
zeldin authored and Dan Peori committed Dec 22, 2011
1 parent 528ea30 commit 37d718a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/gallium/targets/egl-psl1ght/Makefile
Expand Up @@ -11,6 +11,19 @@ LIBRARY_INCLUDES = \

LIBRARY_DEFINES = -DGALLIUM_SOFTPIPE

ifneq ($(filter $(GL_LIB), $(EGL_CLIENT_APIS)),)
LIBRARY_DEFINES += -DFEATURE_GL=1
endif
ifneq ($(filter $(GLESv1_CM_LIB), $(EGL_CLIENT_APIS)),)
LIBRARY_DEFINES += -DFEATURE_ES1=1
endif
ifneq ($(filter $(GLESv2_LIB), $(EGL_CLIENT_APIS)),)
LIBRARY_DEFINES += -DFEATURE_ES2=1
endif
ifneq ($(filter $(VG_LIB), $(EGL_CLIENT_APIS)),)
LIBRARY_DEFINES += -DFEATURE_VG=1
endif

C_SOURCES = egl_psl1ght.c

include ../../Makefile.template

0 comments on commit 37d718a

Please sign in to comment.