Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-12-03 | Merge pull request #1891 from onnoj/incoming | Alon Zakai | |
Fixed glSampleCoverage signature (vi to vii) | |||
2013-12-03 | [SDL Audio] Refactoring Mix_LoadWAV_RW to use new FS API. | John Vilk | |
The old API was causing issues with certain file systems, as the `read` property required the execute bit AND the read bit to be set before it would return `true`. As a side benefit, the new code is simpler and cleaner. | |||
2013-12-03 | Fixed glSampleCoverage signature (vi to vii) | onnoj | |
The signature for glSampleCoverage was incorrect (vi); glSampleCoverage takes two arguments (vii). See: https://www.khronos.org/registry/webgl/specs/1.0.2/#5.14.3 and http://www.khronos.org/opengles/sdk/docs/man/xhtml/glSampleCoverage.xml | |||
2013-12-02 | be sure to not emit an external ref as both a var and a func in fastcomp | Alon Zakai | |
2013-12-02 | move import in cache.py to avoid module interdependencies; fallout from ↵ | Alon Zakai | |
0f5135e436 breaking test_llvm_nativizer | |||
2013-12-02 | use externs for fastcomp vars and declare for fastcomp funcs | Alon Zakai | |
2013-12-02 | report better error in fread on bad stream | Alon Zakai | |
2013-12-02 | fix file preloading in workers and add test | Alon Zakai | |
2013-12-02 | return 0 on fread on invalid stream | Alon Zakai | |
2013-12-02 | make posix_madvise standlone | Alon Zakai | |
2013-12-01 | fix for pull #1882 | Alon Zakai | |
2013-12-01 | differentiate external vars from funcs in fastcomp | Alon Zakai | |
2013-12-01 | Merge pull request #1882 from abergmeier/safe_ensure_dirs | Alon Zakai | |
Introduce safe_ensure_dirs as a safe os.makedirs replacement. | |||
2013-12-01 | Introduce safe_ensure_dirs as a safe os.makedirs replacement. | Andreas Bergmeier | |
It only uses os.makedirs call, which is more atomic than calling 2 procs. Thus exception due to already existent directory should not longer occur. | |||
2013-12-01 | fix emscripten_hide_mouse removal of old rule | Alon Zakai | |
2013-11-30 | send EXPORTED_FUNCTIONS to fastcomp glue | Alon Zakai | |
2013-11-29 | fix memmove return value | Alon Zakai | |
2013-11-29 | add missing mkport dependency | Alon Zakai | |
2013-11-29 | emit runPostSets call in fastcomp | Alon Zakai | |
2013-11-29 | fix repeating global_funcs for fastcomp | Alon Zakai | |
2013-11-29 | do not emit empty postsets from js compiler for fastcomp output | Alon Zakai | |
2013-11-28 | fix bitcast type when the input is an llvm function like getelementptr | Alon Zakai | |
2013-11-28 | fix memset return value | Alon Zakai | |
2013-11-28 | fix fastcomp vararg alignment, only 4-byte | Alon Zakai | |
2013-11-28 | Merge pull request #1872 from coolwanglu/mkdtemp | Alon Zakai | |
mkdtemp | |||
2013-11-28 | Merge branch 'glGet-cleanup' into incoming | Alon Zakai | |
2013-11-28 | cleanup and consolidate glGet | Alon Zakai | |
2013-11-28 | Document GL_FFP_ONLY setting in src/settings.js. | Jukka Jylänki | |
2013-11-28 | check error in mkdtemp() | Lu Wang | |
2013-11-28 | mkdtemp | Lu Wang | |
2013-11-28 | - fix for structures generated by manually calling generateStructInfo | Anthony Pesch | |
2013-11-27 | send externs to library including | Alon Zakai | |
2013-11-27 | add dso_handle to library, for fastcomp | Alon Zakai | |
2013-11-27 | add fastcomp externs to asm imports | Alon Zakai | |
2013-11-27 | Merge pull request #1862 from abergmeier/prevent_false_negative_in_cache | Alon Zakai | |
Prevent Cache.ensure from throwing an error, while the directory already... | |||
2013-11-27 | Merge pull request #1867 from abergmeier/spelling_bee | Alon Zakai | |
Fix spelling error. | |||
2013-11-27 | Merge pull request #1863 from juj/gl_emulation_opts_rebased | Alon Zakai | |
Optimize GL emulation layer. | |||
2013-11-27 | GL_IMPLEMENTATION_COLOR_READ_TYPE and GL_IMPLEMENTATION_COLOR_READ_FORMAT | Alon Zakai | |
2013-11-27 | Fix spelling error. | Andreas Bergmeier | |
2013-11-27 | Cast GL emulation matrix version numbers back to integers after increment. ↵ | Jukka Jylänki | |
Code cleanup and clarify comments. | |||
2013-11-26 | tiny code cleanup | Alon Zakai | |
2013-11-26 | Merge pull request #1865 from ngld/llvm-used | Alon Zakai | |
Fix @llvm.used | |||
2013-11-27 | Set proper value type for @llvm.used | ngld | |
2013-11-26 | Merge pull request #1864 from ngld/llvm-used | Alon Zakai | |
Implemented #1573. (@llvm.used) | |||
2013-11-26 | Merge pull request #1757 from wahbahdoo/incoming | Alon Zakai | |
Incoming -- add support for SIMD x86 intrinsics | |||
2013-11-26 | add SIMD contributor to AUTHORS | Heidi Pan | |
2013-11-26 | update simd_test to use updated int32x4 instead of uint32x4; add simd_test3 ↵ | Heidi Pan | |
for more comprehensive x86 intrinsics unit tests | |||
2013-11-26 | getting some initial set of x86 intrinsics mapped to JS SIMD ops; update ↵ | Heidi Pan | |
existing SIMD code to use updated JS SIMD API (SIMD.type.op instead of SIMD.op & SIMD.opu32; int32x4 instead of uint32x4); bug fix: right type of withX() for int32x4 initialization; bug fix: splat(0) instead of zero() for int32x4 initialization | |||
2013-11-26 | getting some initial set of x86 intrinsics mapped to JS SIMD ops; update ↵ | Heidi Pan | |
existing SIMD code to use updated JS SIMD API (SIMD.type.op instead of SIMD.op & SIMD.opu32; int32x4 instead of uint32x4); bug fix: right type of withX() for int32x4 initialization; bug fix: splat(0) instead of zero() for int32x4 initialization | |||
2013-11-26 | Implemented #1573. All functions marked as "used" will be automatically ↵ | ngld | |
added to EXPORTED_FUNCTIONS. |