aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉloi Rivard <azmeuk@gmail.com>2013-03-27 20:56:30 +0100
committerÉloi Rivard <azmeuk@gmail.com>2013-04-04 11:17:36 +0200
commit5bc370bc702a276c3186bb7e537bffe2895fd7f8 (patch)
tree9839fcf9bd3d5a43eda1773e224c15c4eeebf3fd
parent26a2095480bfbf51275671695c0ac8c1c995cc7f (diff)
* Header.
-rw-r--r--src/library_glfw.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/library_glfw.js b/src/library_glfw.js
index 41fef63f..20c75a29 100644
--- a/src/library_glfw.js
+++ b/src/library_glfw.js
@@ -1,6 +1,6 @@
/*******************************************************************************
* EMSCRIPTEN GLFW 2.7.7 emulation.
- * It tries to copy the behavior described in
+ * It tries to emulate the behavior described in
* http://www.glfw.org/GLFWReference277.pdf
*
* What it does:
@@ -8,14 +8,13 @@
* - Manage keyboard and mouse events.
* - GL Extensions support.
*
- * What it does not but should do:
+ * What it does not but should probably do:
* - Transmit events when glfwPollEvents, glfwWaitEvents or glfwSwapBuffers is
* called. Events callbacks are called as soon as event are received.
- * - Correctly handle unicode characters. To be tested.
* - Thread emulation.
* - Joystick support.
- * - Image/Texture I/O support.
- * - Video modes.
+ * - Image/Texture I/O support (that is deleted in GLFW 3).
+ * - Video modes detection.
*
* Authors:
* - Éloi Rivard <eloi.rivard@gmail.com>
@@ -105,6 +104,7 @@ var LibraryGLFW = {
};
},
+ //UCS-2 to UTF16 (ISO 10646)
getUnicodeChar: function(value) {
var output = '';
if (value > 0xFFFF) {