aboutsummaryrefslogtreecommitdiff
path: root/AUTHORS
AgeCommit message (Collapse)Author
2014-01-16It's 2014Sindre Sorhus
2014-01-14Add GLEW 1.10.0 emulationJari Vetoniemi
Includes library_glew.js that stubs the init functions, but also provides the other functions. GL/glew.h is now changed to work with GLEW_EXT_foo_bar constants, some missing constants that are in GLEW 1.10.0 are also provided. Otherwise it still uses SDL_opengl.h to provide function definitions and other constants. Linaro's GLEW (glew-oes) is also supported to some degree to make it easier to get ES1 and ES2 software using it running. What it lacks: - Some constants and function declarations that are in GLEW 1.10.0 might be missing. - The real glew-es fork also includes normal GL constants and function pointers, this does not. Tests ran: - tests/runner.py browser Real world example using this code (and upcomming glfw3 port) can be found here: http://cloudef.eu/glhck http://cloudef.eu/glhck/qb.html
2014-01-10Update AUTHORSEmerson José Silveira da Costa
Adding my name to the AUTHORS list as instructed by kripken in response to: https://github.com/kripken/emscripten/pull/1996
2014-01-07Adding myself to AUTHORS fileAlexPerrot
2014-01-06Added myself to AUTHORSfloooh
2013-12-24Fixed small problems which exhibit themself when building projects with too ↵Volo Zyko
many source files. When there are too many source files and one builds static libraray cmake splits the whole list of files into several invocations of library archiver. In order this to work cmake needs to know both how to create and how to append to archive. Another related issue is that emscripten code fails when links a final javascript code if a command line of a link command is too long (this 'too long' is very OS dependent). Related discussion can be found in issue #1931. Conflicts: AUTHORS
2013-12-17Update AUTHORSCliffyA
2013-12-07Update AUTHORSVasilis Kalintiris
2013-11-26add SIMD contributor to AUTHORSHeidi Pan
2013-11-26add myselfLu Wang
2013-11-21Merge branch 'fix_whitespace' of github.com:DanielBaulig/emscripten into ↵Alon Zakai
incoming Conflicts: AUTHORS
2013-11-21Add missing semicolons in preamble.jsDaniel Baulig
2013-11-10[SDL] Joystick API implementation using HTML5 Gamepad APIJohn Vilk
Works in browsers that implement the working draft of the standard (current Chrome / Firefox stable): http://www.w3.org/TR/2012/WD-gamepad-20120529/#gamepad-interface ...and browsers that implement the editor's draft (current Firefox Nightly): https://dvcs.w3.org/hg/gamepad/raw-file/default/gamepad.html#idl-def-Gamepad Contains unit tests for both event types.
2013-11-07Add self to AUTHORSbobroberts177
2013-10-31Merge branch 'fixup-node-version-check' of github.com:bnoordhuis/emscripten ↵Alon Zakai
into incoming Conflicts: AUTHORS
2013-10-30tools: parse pre-release node.js version numbersBen Noordhuis
`node` binaries built from upstream git have a "-pre" suffix attached to the version number. Fix the version parser to handle those.
2013-10-28added myselficetooth
2013-10-16Merge branch 'fix-module-exports-with-closure-try2' of ↵Alon Zakai
github.com:fadams/emscripten into incoming Conflicts: AUTHORS tests/test_other.py
2013-10-16Merge branch 'antialiasing' of github.com:wsmind/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2013-10-14Merge branch 'implemet_glcolor4ubv' of github.com:chino/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2013-10-14authors: adding my self :]Daniel Aquino
2013-10-14Merge branch 'glut_mouse_wheel' of github.com:anlambert/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2013-10-13Added myself to AUTHORSRémi Papillié
2013-10-02fixed problem where module.exports, which is needed by node.js gets ↵Fraser Adams
incorrectly minified by Closure. Simple change from module.exports = Module to module['exports'] = Module fixes this. Added simple test case compiling with --O2 -closure 1 to /tests/Module-exports
2013-09-30add myself in AUTHORS fileAntoine Lambert
2013-09-29Add Marcos Scriven to list of authorsMarcos Scriven
2013-09-24Fix entire surface alpha blending with SDL_SetAlphaRichard Quirk
2013-09-24Fix AUTHORS to have UTF-8 encoding.Jukka Jylänki
2013-09-24Rewritten with audioBuffersILOVEPIE
Added myself to AUTHORS Signed-off-by: ILOVEPIE <thehairyrock@gmail.com>
2013-09-18Add a test and myself to AUTHORS.ngld
2013-09-18Add myself to AUTHORSngld
2013-08-28Update AUTHORS fileRanger Harke
2013-08-24Add myself to AUTHORSDaft-Freak
2013-08-20Add self to authorsAidan Hobson Sayers
2013-08-08Add Nick Bray to authors.Nick Bray
2013-08-01Merge branch 'qsort_reduce_callchain' of github.com:PinZhang/emscripten into ↵Alon Zakai
incoming
2013-07-31Reduce call chain of qsortpzhang
This will considerably improve the performance of qsort-heavily-used projects like Android-Pinyin-IME, more discussion: https://groups.google.com/forum/#!topic/emscripten-discuss/Ah2CNfQ8ra4 https://github.com/kripken/emscripten/pull/1437
2013-07-30Add Yu Kobayashi to AUTHORSYu Kobayashi
2013-07-21Merge branch 'isgraph' of github.com:ToadKing/emscripten into incomingAlon Zakai
2013-07-21add self to AUTHORSToadKing
2013-07-16Fix JS syntax error when embedding an empty file.Ryan Kelly
2013-07-15Added myself to AUTHORSSoeren Balko
2013-07-11Add Douglas Crosher to the AUTHORS file.Douglas T. Crosher
2013-07-01Added Joseph Gentle to authorsJoseph Gentle
2013-06-18CHANGED: added myself to AUTHORSmanny/MADE
2013-06-17Added test for float.h agreeing with sizeof.David Barksdale
2013-06-05Merge branch 'commonjs' of github.com:jazzzz/emscripten into incomingAlon Zakai
2013-06-05Add myself to AUTHORSJazz
2013-06-04Merge branch 'master' of github.com:feeley/emscripten into incomingAlon Zakai
2013-06-04Add basic support for nonblocking readMarc Feeley