Skip to content

Commit

Permalink
Deploying to gh-pages from @ 0755ec0 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
aglitchman committed Nov 1, 2024
1 parent 7be4617 commit 51cc838
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 20,483 deletions.
2 changes: 1 addition & 1 deletion archive/archive_files.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"content":[{"name":"game.projectc","size":3848,"pieces":[{"name":"game0.projectc","offset":0}]},{"name":"game.arci","size":4768,"pieces":[{"name":"game0.arci","offset":0}]},{"name":"game.arcd","size":81804,"pieces":[{"name":"game0.arcd","offset":0}]},{"name":"game.dmanifest","size":4954,"pieces":[{"name":"game0.dmanifest","offset":0}]},{"name":"game.public.der","size":162,"pieces":[{"name":"game0.public.der","offset":0}]}],"total_size":95536}
{"content":[{"name":"game.projectc","size":3848,"pieces":[{"name":"game0.projectc","offset":0}]},{"name":"game.arci","size":4768,"pieces":[{"name":"game0.arci","offset":0}]},{"name":"game.arcd","size":81808,"pieces":[{"name":"game0.arcd","offset":0}]},{"name":"game.dmanifest","size":4964,"pieces":[{"name":"game0.dmanifest","offset":0}]},{"name":"game.public.der","size":162,"pieces":[{"name":"game0.public.der","offset":0}]}],"total_size":95550}
Binary file modified archive/game0.arcd
Binary file not shown.
Binary file modified archive/game0.arci
Binary file not shown.
Binary file modified archive/game0.dmanifest
Binary file not shown.
Binary file modified archive/game0.public.der
Binary file not shown.
12 changes: 7 additions & 5 deletions dmloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,9 @@ var FileLoader = {


var EngineLoader = {
wasm_size: 2380287,
wasmjs_size: 341627,
asmjs_size: 5052250,
wasm_size: 2405488,
wasmjs_size: 264691,
asmjs_size: 5032994,
wasm_instantiate_progress: 0,

stream_wasm: "false" === "true",
Expand All @@ -225,7 +225,7 @@ var EngineLoader = {
function(error) { throw error; },
function(wasm) {
if (wasm.byteLength != EngineLoader.wasm_size) {
throw "Invalid wasm size. Expected: " + EngineLoader.wasm_size + ", actual: " + wasm.byteLength;
console.warn("Unexpected wasm size: " + wasm.byteLength + ", expected: " + EngineLoader.wasm_size);
}
var wasmInstantiate = WebAssembly.instantiate(new Uint8Array(wasm), imports).then(function(output) {
successCallback(output.instance);
Expand Down Expand Up @@ -772,6 +772,8 @@ var Module = {
hasWebGLSupport: function() {
var webgl_support = false;
try {
// create canvas to simply check is rendering context supported
// real render context created by glfw
var canvas = document.createElement("canvas");
var gl = canvas.getContext("webgl") || canvas.getContext("experimental-webgl");
if (gl && gl instanceof WebGLRenderingContext) {
Expand Down Expand Up @@ -969,7 +971,7 @@ var Module = {
}
},

_callMain: function() {
_callMain: function(_, _) {
ProgressView.removeProgress();
if (Module.callMain === undefined) {
Module.noInitialRun = false;
Expand Down
Binary file modified hyper_trails.wasm
Binary file not shown.
10,383 changes: 30 additions & 10,353 deletions hyper_trails_asmjs.js

Large diffs are not rendered by default.

Loading

0 comments on commit 51cc838

Please sign in to comment.