aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-07-24do invoke_* on LLVM invokes using function pointers; fixes #1423Alon Zakai
2013-07-24Merge pull request #1394 from inolen/stat_testsAlon Zakai
added lchmod, new tests, fixed for mknod return values
2013-07-24properly handle loads of i24s and similar illegal valuesAlon Zakai
2013-07-23properly handle generation of instances of structures ending in [0 x ..]Alon Zakai
2013-07-23better error messageAlon Zakai
2013-07-23fix scanString hardcoded HEAP32 referenceAlon Zakai
2013-07-23Merge branch 'master' of github.com:ToadKing/emscripten into incomingAlon Zakai
2013-07-24Implement glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS).Jukka Jylänki
2013-07-23fix Math.imul closuringAlon Zakai
2013-07-23fix structure size when it has a [0 x ..] at the end - that should add nothingAlon Zakai
2013-07-22change error message to assertToadKing
add testcase for glGetAttachedShaders
2013-07-22Merge pull request #1424 from sbalko/strftime-implAlon Zakai
Implement strftime
2013-07-22Made getMimetype() a public method of the Browser module and used itMichael J. Bishop
inside the SDL module.
2013-07-22Merge pull request #1406 from inolen/printerr_fixesAlon Zakai
fixed stderr output to use printErr
2013-07-22no need to closure-guard Math.imul definitions (only used internally anyhow, ↵Alon Zakai
and need to be consistent with later Math.imul uses
2013-07-22fix regression of double-counting varargsAlon Zakai
2013-07-22Added mime type information to SDL_rwops in `SDL_RWFromFile` as a hintMichael J. Bishop
to processing down the line. Changed the `Pointer_stringify()` call to occur in `SDL_RWFromFile` instead of downstream which makes more sense. Cleaned up formatting.
2013-07-21notice varargs when creating library function wrappersAlon Zakai
2013-07-22Formatting changes as requested for pull requestSoeren Balko
2013-07-22Implement strftime (incl. tests)Soeren Balko
2013-07-21Merge branch 'isgraph' of github.com:ToadKing/emscripten into incomingAlon Zakai
2013-07-21Merge pull request #1412 from michaeljbishop/pread-fixAlon Zakai
Fixes in pread()
2013-07-20 - added lchmodAnthony Pesch
- fixed up errno values for mknod - split up stat tests into test_stat, test_stat_chmod, test_stat_mknod
2013-07-20fix isgraphToadKing
2013-07-19Formatting cleanup.Michael J. Bishop
2013-07-19Touched up formatting.Michael J. Bishop
No functional change.
2013-07-19fix glGetAttachedShadersToadKing
2013-07-19handle %Nc in sscanf; fixes #1407Alon Zakai
2013-07-19simplify and correct the logic for falling back to the entry ident when an ↵Alon Zakai
invalid label id shows up; fixes #1399
2013-07-19handle out param in SDL_GetKeyboardState; fixes #1404Alon Zakai
2013-07-19Merge pull request #1402 from imvu/embind-updates-pull-requestAlon Zakai
Embind updates pull request
2013-07-18fix for refcount cleanupAnthony Pesch
2013-07-18Fixes in pread()Michael Bishop
The bug occurs when pread() doesn't return 0 when asked to read an offset beyond its buffer. This behavior is explicitly documented at: http://pubs.opengroup.org/onlinepubs/000095399/functions/read.html > If the starting position is at or after the end-of-file, 0 > shall be returned
2013-07-18fixed stderr output to use printErrAnthony Pesch
2013-07-17outlining integration in compilerAlon Zakai
2013-07-17Fix a bunch of things that break under closure advanced optimizations. Now, ↵Chad Austin
to my knowledge, embind fully supports closure advanced mode.
2013-07-17Rename value_tuple to value_array and value_struct to value_objectChad Austin
2013-07-17Fix SDL_surface refcount test and initialise refcount to 1Felix H. Dahlke
2013-07-17Implement SDL_Surface refcountingFelix H. Dahlke
2013-07-16Expose 'lstat64' as a simple alias for 'lstat'.Ryan Kelly
2013-07-15Merge pull request #1388 from inolen/unlink_fixesAlon Zakai
misc unlink / rmdir fixes
2013-07-15 - rmdir / unlink no longer follow the final symlinkAnthony Pesch
- rmdir / unlink no longer check write permission on the found object, but on its parent - rmdir should return EBUSY when path matches the root / cwd - unlinking a directory should return EPERM according to POSIX (EISDIR is a Linux convention)
2013-07-15Made sure that `IMG_Load_RW` is also aware that it should receiveMichael J. Bishop
`SDL_RWops *` generated from `SDL_RWFromFile()`.
2013-07-15do not use safe heap in strptime loading of tm values - may have never been ↵Alon Zakai
initialized
2013-07-15fix both number of arguments and return type based on implementation ↵Alon Zakai
information, to work around silly llvm function casts
2013-07-15fix Functions.getSignature to handle non-legalized dataAlon Zakai
2013-07-15when we are calling an implemented function, call it using the signature it ↵Alon Zakai
is implemented as, to avoid issues with LLVM casting for no reason
2013-07-15Updated with kripken's suggestions.Michael J. Bishop
2013-07-15Merge pull request #1385 from fhd/zoom-if-360Alon Zakai
Just zoom the surface if the angle is divisible by 360
2013-07-15update relooper commentAlon Zakai