mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
43a3045735
Upstream is at http://code.google.com/p/angleproject/
181 lines
6.3 KiB
Diff
181 lines
6.3 KiB
Diff
# HG changeset patch
|
|
# Parent bc7188c29ec5b942046c0589ce959d7985f7ad6e
|
|
|
|
diff --git a/gfx/angle/Makefile.in b/gfx/angle/Makefile.in
|
|
--- a/gfx/angle/Makefile.in
|
|
+++ b/gfx/angle/Makefile.in
|
|
@@ -129,16 +129,18 @@ CSRCS = \
|
|
$(NULL)
|
|
|
|
DEFINES += -DANGLE_USE_NSPR -DANGLE_BUILD -DCOMPILER_IMPLEMENTATION
|
|
|
|
#these defines are from ANGLE's build_angle.gyp
|
|
DEFINES += -DANGLE_DISABLE_TRACE
|
|
DEFINES += -DANGLE_COMPILE_OPTIMIZATION_LEVEL=D3DCOMPILE_OPTIMIZATION_LEVEL0
|
|
|
|
+EXTRA_DSO_LDOPTS = $(MOZALLOC_LIB)
|
|
+
|
|
ifdef MOZ_ANGLE
|
|
|
|
# libEGL depends on (links against!) libGLESv2!
|
|
DIRS = src/libGLESv2 src/libEGL
|
|
|
|
libs::
|
|
expand "$(MOZ_D3DX9_CAB)" -F:$(MOZ_D3DX9_DLL) "$(DIST)/bin"
|
|
expand "$(MOZ_D3DCOMPILER_CAB)" -F:$(MOZ_D3DCOMPILER_DLL) "$(DIST)/bin"
|
|
diff --git a/gfx/angle/angle-use-xmalloc.patch b/gfx/angle/angle-use-xmalloc.patch
|
|
--- a/gfx/angle/angle-use-xmalloc.patch
|
|
+++ b/gfx/angle/angle-use-xmalloc.patch
|
|
@@ -1,14 +1,14 @@
|
|
# HG changeset patch
|
|
-# Parent 31d1c6ebb61eb118868ca924769a2fa3a50d54ef
|
|
+# Parent 6a1ee30b3a60564c165795ecf79e9c2081ee80ab
|
|
diff --git a/gfx/angle/Makefile.in b/gfx/angle/Makefile.in
|
|
--- a/gfx/angle/Makefile.in
|
|
+++ b/gfx/angle/Makefile.in
|
|
-@@ -127,16 +127,18 @@ CSRCS = \
|
|
+@@ -129,16 +129,18 @@ CSRCS = \
|
|
$(NULL)
|
|
|
|
DEFINES += -DANGLE_USE_NSPR -DANGLE_BUILD -DCOMPILER_IMPLEMENTATION
|
|
|
|
#these defines are from ANGLE's build_angle.gyp
|
|
DEFINES += -DANGLE_DISABLE_TRACE
|
|
DEFINES += -DANGLE_COMPILE_OPTIMIZATION_LEVEL=D3DCOMPILE_OPTIMIZATION_LEVEL0
|
|
|
|
@@ -17,47 +17,26 @@ diff --git a/gfx/angle/Makefile.in b/gfx
|
|
ifdef MOZ_ANGLE
|
|
|
|
# libEGL depends on (links against!) libGLESv2!
|
|
DIRS = src/libGLESv2 src/libEGL
|
|
|
|
libs::
|
|
expand "$(MOZ_D3DX9_CAB)" -F:$(MOZ_D3DX9_DLL) "$(DIST)/bin"
|
|
expand "$(MOZ_D3DCOMPILER_CAB)" -F:$(MOZ_D3DCOMPILER_DLL) "$(DIST)/bin"
|
|
-diff --git a/gfx/angle/README.mozilla b/gfx/angle/README.mozilla
|
|
---- a/gfx/angle/README.mozilla
|
|
-+++ b/gfx/angle/README.mozilla
|
|
-@@ -3,16 +3,17 @@ This is the ANGLE project, from http://c
|
|
- Current revision: r885
|
|
-
|
|
- == Applied local patches ==
|
|
-
|
|
- In this order:
|
|
- angle-renaming-debug.patch - rename debug.h to compilerdebug.h to avoid conflict in our makefiles
|
|
- angle-intrinsic-msvc2005.patch - work around a MSVC 2005 compile error
|
|
- angle-limit-identifiers-to-250-chars.patch - see bug 675625
|
|
-+ angle-use-xmalloc.patch - see bug 680840. Can drop this patch whenever the new preprocessor lands.
|
|
-
|
|
- In addition to these patches, the Makefile.in files are ours, they're not present in upsteam ANGLE.
|
|
-
|
|
- == How to update this ANGLE copy ==
|
|
-
|
|
- 1. Unapply patches
|
|
- 2. Apply diff with new ANGLE version
|
|
- 3. Reapply patches.
|
|
diff --git a/gfx/angle/src/compiler/preprocessor/atom.c b/gfx/angle/src/compiler/preprocessor/atom.c
|
|
--- a/gfx/angle/src/compiler/preprocessor/atom.c
|
|
+++ b/gfx/angle/src/compiler/preprocessor/atom.c
|
|
@@ -48,16 +48,18 @@ NVIDIA HAS BEEN ADVISED OF THE POSSIBILI
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
- #include "compiler/compilerdebug.h"
|
|
+ #include "compiler/debug.h"
|
|
#include "compiler/preprocessor/slglobals.h"
|
|
|
|
+#include "../../../../../memory/mozalloc/mozalloc.h"
|
|
+
|
|
#undef malloc
|
|
#undef realloc
|
|
#undef free
|
|
|
|
diff --git a/gfx/angle/src/compiler/preprocessor/atom.c b/gfx/angle/src/compiler/preprocessor/atom.c
|
|
--- a/gfx/angle/src/compiler/preprocessor/atom.c
|
|
+++ b/gfx/angle/src/compiler/preprocessor/atom.c
|
|
@@ -48,16 +48,18 @@ NVIDIA HAS BEEN ADVISED OF THE POSSIBILI
|
|
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "compiler/compilerdebug.h"
|
|
#include "compiler/preprocessor/slglobals.h"
|
|
|
|
+#include "../../../../../memory/mozalloc/mozalloc.h"
|
|
+
|
|
#undef malloc
|
|
#undef realloc
|
|
#undef free
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
|
////////////////////////////////////////// String table: //////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
@@ -318,31 +320,23 @@ static int AddAtomFixed(AtomTable *atabl
|
|
*/
|
|
|
|
static int GrowAtomTable(AtomTable *atable, int size)
|
|
{
|
|
int *newmap, *newrev;
|
|
|
|
if (atable->size < size) {
|
|
if (atable->amap) {
|
|
- newmap = realloc(atable->amap, sizeof(int)*size);
|
|
- newrev = realloc(atable->arev, sizeof(int)*size);
|
|
+ newmap = moz_xrealloc(atable->amap, sizeof(int)*size);
|
|
+ newrev = moz_xrealloc(atable->arev, sizeof(int)*size);
|
|
} else {
|
|
- newmap = malloc(sizeof(int)*size);
|
|
- newrev = malloc(sizeof(int)*size);
|
|
+ newmap = moz_xmalloc(sizeof(int)*size);
|
|
+ newrev = moz_xmalloc(sizeof(int)*size);
|
|
atable->size = 0;
|
|
}
|
|
- if (!newmap || !newrev) {
|
|
- /* failed to grow -- error */
|
|
- if (newmap)
|
|
- atable->amap = newmap;
|
|
- if (newrev)
|
|
- atable->arev = newrev;
|
|
- return -1;
|
|
- }
|
|
memset(&newmap[atable->size], 0, (size - atable->size) * sizeof(int));
|
|
memset(&newrev[atable->size], 0, (size - atable->size) * sizeof(int));
|
|
atable->amap = newmap;
|
|
atable->arev = newrev;
|
|
atable->size = size;
|
|
}
|
|
return 0;
|
|
} // GrowAtomTable
|
|
diff --git a/gfx/angle/src/libEGL/Makefile.in b/gfx/angle/src/libEGL/Makefile.in
|
|
--- a/gfx/angle/src/libEGL/Makefile.in
|
|
+++ b/gfx/angle/src/libEGL/Makefile.in
|
|
@@ -153,8 +153,10 @@ RCFILE = $(srcdir)/libEGL.rc
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
EXTRA_DSO_LDOPTS = "$(MOZ_DIRECTX_SDK_PATH)/lib/$(MOZ_DIRECTX_SDK_CPU_SUFFIX)/d3d9.lib" \
|
|
"$(MOZ_DIRECTX_SDK_PATH)/lib/$(MOZ_DIRECTX_SDK_CPU_SUFFIX)/dxguid.lib" \
|
|
"$(DIST)/lib/libGLESv2.lib" \
|
|
dwmapi.lib \
|
|
delayimp.lib \
|
|
/delayload:dwmapi.dll
|
|
+
|
|
+EXTRA_DSO_LDOPTS += $(MOZALLOC_LIB)
|
|
diff --git a/gfx/angle/src/libGLESv2/Makefile.in b/gfx/angle/src/libGLESv2/Makefile.in
|
|
--- a/gfx/angle/src/libGLESv2/Makefile.in
|
|
+++ b/gfx/angle/src/libGLESv2/Makefile.in
|
|
@@ -162,8 +162,10 @@ CPPSRCS += \
|
|
DEFFILE = $(srcdir)/libGLESv2.def
|
|
RCFILE = $(srcdir)/libGLESv2.rc
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
EXTRA_DSO_LDOPTS = "$(MOZ_DIRECTX_SDK_PATH)/lib/$(MOZ_DIRECTX_SDK_CPU_SUFFIX)/d3d9.lib" \
|
|
"$(MOZ_DIRECTX_SDK_PATH)/lib/$(MOZ_DIRECTX_SDK_CPU_SUFFIX)/d3dx9.lib" \
|
|
"$(MOZ_DIRECTX_SDK_PATH)/lib/$(MOZ_DIRECTX_SDK_CPU_SUFFIX)/D3DCompiler.lib"
|
|
+
|
|
+EXTRA_DSO_LDOPTS += $(MOZALLOC_LIB)
|