This commit is contained in:
Alon Zakai 2012-06-12 17:56:40 -07:00
Родитель 4bb5c641d3
Коммит f1c4dae2cb
2 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -6203,6 +6203,10 @@ LibraryManager.library = {
return eval(Pointer_stringify(ptr));
},
emscripten_random: function() {
return Math.random();
},
$Profiling: {
max_: 0,
times: null,

Просмотреть файл

@ -79,6 +79,11 @@ void emscripten_set_canvas_size(int width, int height);
*/
float emscripten_get_now();
/*
* Simple random number generation in [0, 1), maps to Math.random().
*/
float emscripten_random();
/*
* This macro-looking function will cause Emscripten to
* generate a comment in the generated code.