aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2014-02-09 11:52:02 -0800
committerAlon Zakai <alonzakai@gmail.com>2014-02-09 11:52:02 -0800
commit9faadeb8a446584864ff04111e9a1d1695d8f458 (patch)
tree3369113a2f965ab3fbb7bb0b57e397fb66cbbb4b
parent6cdd7405376a72a47889e0b3d325f908951680b1 (diff)
enable legacy gl emulation in fastcomp
-rwxr-xr-xemcc1
-rwxr-xr-xtests/runner.py1
2 files changed, 0 insertions, 2 deletions
diff --git a/emcc b/emcc
index 1d8bdb7c..c252b1a4 100755
--- a/emcc
+++ b/emcc
@@ -1201,7 +1201,6 @@ try:
assert shared.Settings.RESERVED_FUNCTION_POINTERS == 0, 'reserved function pointers not supported in fastcomp'
assert shared.Settings.ASM_HEAP_LOG == 0, 'asm heap log not supported in fastcomp'
assert shared.Settings.LABEL_DEBUG == 0, 'label debug not supported in fastcomp'
- assert shared.Settings.LEGACY_GL_EMULATION == 0, 'legacy gl emulation not supported in fastcomp'
assert shared.Settings.EXECUTION_TIMEOUT == -1, 'execution timeout not supported in fastcomp'
assert shared.Settings.NAMED_GLOBALS == 0, 'named globals not supported in fastcomp'
assert shared.Settings.PGO == 0, 'pgo not supported in fastcomp'
diff --git a/tests/runner.py b/tests/runner.py
index 4dd93b1a..fffd039c 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -653,7 +653,6 @@ class BrowserCore(RunnerCore):
def btest(self, filename, expected=None, reference=None, force_c=False, reference_slack=0, manual_reference=False, post_build=None,
args=[], outfile='test.html', message='.'): # TODO: use in all other tests
- if os.environ.get('EMCC_FAST_COMPILER') == '1' and 'LEGACY_GL_EMULATION=1' in args: return self.skip('no legacy gl emulation in fastcomp')
# if we are provided the source and not a path, use that
filename_is_src = '\n' in filename
src = filename if filename_is_src else ''