diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-01-06 15:40:00 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-05-29 11:11:38 +0200 |
commit | 7ced9e9f6da2257224591b91727cfeee4f3977fb (patch) | |
tree | bc8e3bddfbd7906bc275beb6f1e10a39daf7e988 /ui/Makefile.objs | |
parent | 896e1a050a0d333b1f0ec0768cc64e26c5d0d104 (diff) |
ui: add egl-helpers
Add helper functions to initialize OpenGL using egl.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'ui/Makefile.objs')
-rw-r--r-- | ui/Makefile.objs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/Makefile.objs b/ui/Makefile.objs index 029a42a688..5c468703a1 100644 --- a/ui/Makefile.objs +++ b/ui/Makefile.objs @@ -30,11 +30,14 @@ sdl.mo-cflags := $(SDL_CFLAGS) ifeq ($(CONFIG_OPENGL),y) common-obj-y += shader.o common-obj-y += console-gl.o +common-obj-y += egl-helpers.o endif gtk.o-cflags := $(GTK_CFLAGS) $(VTE_CFLAGS) shader.o-cflags += $(OPENGL_CFLAGS) console-gl.o-cflags += $(OPENGL_CFLAGS) +egl-helpers.o-cflags += $(OPENGL_CFLAGS) shader.o-libs += $(OPENGL_LIBS) console-gl.o-libs += $(OPENGL_LIBS) +egl-helpers.o-libs += $(OPENGL_LIBS) |