File: importedSignCast.asm.js

package info (click to toggle)
binaryen 68-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 34,900 kB
  • sloc: cpp: 57,351; ansic: 3,562; python: 2,898; sh: 700; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function asm(global, env, buffer) {
  "use asm";

  var gm = env._emscripten_glIsTexture;

  function func() {
    gm(0) << 24 >> 24;
  }

  var FUNCTION_TABLE_a = [ gm ];

  return { func: func };
}