2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-11-18 09:07:49 +00:00
|
|
|
|
2012-08-04 18:26:44 +00:00
|
|
|
DEPTH = @DEPTH@
|
2011-11-18 09:07:49 +00:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = gl
|
|
|
|
LIBRARY_NAME = gl
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
EXPORT_LIBRARY = 1
|
2012-06-20 04:12:30 +00:00
|
|
|
FAIL_ON_WARNINGS = 1
|
2011-11-18 09:07:49 +00:00
|
|
|
|
|
|
|
EXPORTS = \
|
|
|
|
GLDefs.h \
|
|
|
|
GLContext.h \
|
2012-11-26 20:51:57 +00:00
|
|
|
GLContextTypes.h \
|
2011-11-18 09:07:49 +00:00
|
|
|
GLContextSymbols.h \
|
|
|
|
GLContextProvider.h \
|
|
|
|
GLContextProviderImpl.h \
|
2012-03-16 22:24:12 +00:00
|
|
|
GLLibraryLoader.h \
|
2012-02-29 20:49:55 +00:00
|
|
|
ForceDiscreteGPUHelperCGL.h \
|
2012-11-26 20:51:58 +00:00
|
|
|
GLTextureImage.h \
|
2011-11-18 09:07:49 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef MOZ_X11
|
|
|
|
EXPORTS += \
|
|
|
|
GLXLibrary.h \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
EXPORTS += \
|
|
|
|
WGLLibrary.h \
|
|
|
|
$(NULL)
|
2012-07-11 02:32:59 +00:00
|
|
|
ifdef MOZ_WEBGL
|
|
|
|
DEFINES += -DMOZ_WEBGL
|
2012-07-07 04:44:48 +00:00
|
|
|
DEFINES += -DMOZ_D3DX9_DLL=$(MOZ_D3DX9_DLL)
|
|
|
|
DEFINES += -DMOZ_D3DCOMPILER_DLL=$(MOZ_D3DCOMPILER_DLL)
|
2011-11-18 09:07:49 +00:00
|
|
|
endif
|
2012-07-11 02:32:59 +00:00
|
|
|
endif
|
2011-11-18 09:07:49 +00:00
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
GLContext.cpp \
|
2012-08-22 03:30:20 +00:00
|
|
|
GLContextUtils.cpp \
|
2012-03-16 22:24:12 +00:00
|
|
|
GLLibraryLoader.cpp \
|
2012-11-26 20:51:58 +00:00
|
|
|
GLTextureImage.cpp \
|
2011-11-18 09:07:49 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
GL_PROVIDER = Null
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
GL_PROVIDER = WGL
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
|
|
|
GL_PROVIDER = CGL
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
ifdef MOZ_PLATFORM_MAEMO
|
|
|
|
GL_PROVIDER = EGL
|
|
|
|
else
|
|
|
|
ifdef MOZ_EGL_XRENDER_COMPOSITE
|
|
|
|
GL_PROVIDER = EGL
|
|
|
|
else
|
|
|
|
GL_PROVIDER = GLX
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),qt)
|
|
|
|
ifdef MOZ_PLATFORM_MAEMO
|
|
|
|
GL_PROVIDER = EGL
|
|
|
|
else
|
|
|
|
GL_PROVIDER = GLX
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),android)
|
|
|
|
GL_PROVIDER = EGL
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gonk)
|
|
|
|
GL_PROVIDER = EGL
|
2012-08-24 19:42:45 +00:00
|
|
|
LOCAL_INCLUDES = -I$(topsrcdir)/widget/gonk
|
2011-11-18 09:07:49 +00:00
|
|
|
endif
|
|
|
|
|
2012-03-23 18:43:52 +00:00
|
|
|
ifdef MOZ_GL_PROVIDER
|
|
|
|
GL_PROVIDER = $(MOZ_GL_PROVIDER)
|
|
|
|
endif
|
|
|
|
|
2011-11-18 09:07:49 +00:00
|
|
|
# Mac is a special snowflake
|
|
|
|
ifeq ($(GL_PROVIDER),CGL)
|
|
|
|
CMMSRCS += GLContextProvider$(GL_PROVIDER).mm
|
|
|
|
else
|
|
|
|
CPPSRCS += GLContextProvider$(GL_PROVIDER).cpp
|
|
|
|
endif
|
|
|
|
|
2012-03-16 22:24:12 +00:00
|
|
|
ifeq ($(GL_PROVIDER),EGL)
|
|
|
|
CPPSRCS += GLLibraryEGL.cpp
|
|
|
|
endif
|
|
|
|
|
2011-11-18 09:07:49 +00:00
|
|
|
# Win32 is a special snowflake, for ANGLE
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
2012-03-16 22:24:12 +00:00
|
|
|
CPPSRCS += \
|
|
|
|
GLContextProviderEGL.cpp \
|
|
|
|
GLLibraryEGL.cpp
|
2011-11-18 09:07:49 +00:00
|
|
|
endif
|
|
|
|
|
2012-10-01 20:01:35 +00:00
|
|
|
ifdef MOZ_ANDROID_OMTC
|
|
|
|
DEFINES += -DMOZ_ANDROID_OMTC
|
2012-02-07 23:02:47 +00:00
|
|
|
endif
|
|
|
|
|
2011-11-18 09:07:49 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
DEFINES := $(filter-out -DUNICODE,$(DEFINES))
|
|
|
|
|
2012-05-26 06:44:00 +00:00
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)
|
|
|
|
CFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS) $(TK_CFLAGS)
|