Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-22 | Merge pull request #1424 from sbalko/strftime-impl | Alon Zakai | |
Implement strftime | |||
2013-07-22 | Made getMimetype() a public method of the Browser module and used it | Michael J. Bishop | |
inside the SDL module. | |||
2013-07-22 | Merge pull request #1406 from inolen/printerr_fixes | Alon Zakai | |
fixed stderr output to use printErr | |||
2013-07-22 | no 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-22 | fix regression of double-counting varargs | Alon Zakai | |
2013-07-22 | Added mime type information to SDL_rwops in `SDL_RWFromFile` as a hint | Michael 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-21 | notice varargs when creating library function wrappers | Alon Zakai | |
2013-07-22 | Formatting changes as requested for pull request | Soeren Balko | |
2013-07-22 | Implement strftime (incl. tests) | Soeren Balko | |
2013-07-21 | Merge branch 'isgraph' of github.com:ToadKing/emscripten into incoming | Alon Zakai | |
2013-07-21 | Merge pull request #1412 from michaeljbishop/pread-fix | Alon Zakai | |
Fixes in pread() | |||
2013-07-20 | - added lchmod | Anthony Pesch | |
- fixed up errno values for mknod - split up stat tests into test_stat, test_stat_chmod, test_stat_mknod | |||
2013-07-20 | fix isgraph | ToadKing | |
2013-07-19 | Formatting cleanup. | Michael J. Bishop | |
2013-07-19 | Touched up formatting. | Michael J. Bishop | |
No functional change. | |||
2013-07-19 | fix glGetAttachedShaders | ToadKing | |
2013-07-19 | handle %Nc in sscanf; fixes #1407 | Alon Zakai | |
2013-07-19 | simplify and correct the logic for falling back to the entry ident when an ↵ | Alon Zakai | |
invalid label id shows up; fixes #1399 | |||
2013-07-19 | handle out param in SDL_GetKeyboardState; fixes #1404 | Alon Zakai | |
2013-07-19 | Merge pull request #1402 from imvu/embind-updates-pull-request | Alon Zakai | |
Embind updates pull request | |||
2013-07-18 | fix for refcount cleanup | Anthony Pesch | |
2013-07-18 | Fixes 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-18 | fixed stderr output to use printErr | Anthony Pesch | |
2013-07-17 | outlining integration in compiler | Alon Zakai | |
2013-07-17 | Fix a bunch of things that break under closure advanced optimizations. Now, ↵ | Chad Austin | |
to my knowledge, embind fully supports closure advanced mode. | |||
2013-07-17 | Rename value_tuple to value_array and value_struct to value_object | Chad Austin | |
2013-07-17 | Fix SDL_surface refcount test and initialise refcount to 1 | Felix H. Dahlke | |
2013-07-17 | Implement SDL_Surface refcounting | Felix H. Dahlke | |
2013-07-16 | Expose 'lstat64' as a simple alias for 'lstat'. | Ryan Kelly | |
2013-07-15 | Merge pull request #1388 from inolen/unlink_fixes | Alon Zakai | |
misc unlink / rmdir fixes | |||
2013-07-15 | - rmdir / unlink no longer follow the final symlink | Anthony 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-15 | Made sure that `IMG_Load_RW` is also aware that it should receive | Michael J. Bishop | |
`SDL_RWops *` generated from `SDL_RWFromFile()`. | |||
2013-07-15 | do not use safe heap in strptime loading of tm values - may have never been ↵ | Alon Zakai | |
initialized | |||
2013-07-15 | fix both number of arguments and return type based on implementation ↵ | Alon Zakai | |
information, to work around silly llvm function casts | |||
2013-07-15 | fix Functions.getSignature to handle non-legalized data | Alon Zakai | |
2013-07-15 | when 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-15 | Updated with kripken's suggestions. | Michael J. Bishop | |
2013-07-15 | Merge pull request #1385 from fhd/zoom-if-360 | Alon Zakai | |
Just zoom the surface if the angle is divisible by 360 | |||
2013-07-15 | update relooper comment | Alon Zakai | |
2013-07-15 | Merge pull request #1384 from fhd/ttf-font-height | Alon Zakai | |
Implemented TTF_FontHeight | |||
2013-07-15 | Added support for loading .ogg audio files using a combination of | Michael J. Bishop | |
`SDL_RWFromConstMem()` + `Mix_LoadMUS/WAV_RW()`. `SDL_RWFromConstMem()` now returns an opaque reference that corresponds to a Javascript-side object which retains the information passed in. The same for `SDL_RWFromFile()` but it saves different information. When `Mix_LoadMUS/WAV_RW()` is called, it now expects a reference to one of those Javascript-side objects and from it, either uses a pre-loaded Audio, or reads bytes from the file-system to make one, or uses the bytes originally passed into `SDL_RWFromConstMem()` to create one. Note that with this change you can now simply embed sound files in your app, you do not need to preload them. | |||
2013-07-16 | Just zoom the surface if the angle is divisible by 360 | Felix H. Dahlke | |
2013-07-15 | use high-precision llrint in ta2 only | Alon Zakai | |
2013-07-15 | Merge branch 'self-dlopen' of github.com:int3/emscripten into incoming | Alon Zakai | |
2013-07-16 | Implement TTF_FontHeight | Felix H. Dahlke | |
2013-07-15 | Use DLOPEN_SUPPORT instead of LINKABLE to enable self-dlopen. | Jez Ng | |
Also address style feedback. | |||
2013-07-15 | check for isTerminal on the object of the filesystem entry | Alon Zakai | |
2013-07-15 | implement llrint properly; fixes #1380 | Alon Zakai | |
2013-07-15 | Implement strptime | Soeren Balko | |
2013-07-14 | Merge pull request #1381 from inolen/tty_fixes | Alon Zakai | |
isatty and ttyname fixes |