update gitignore

This commit is contained in:
ohsqueezy 2023-06-19 20:43:07 -04:00
parent d371886a66
commit 46d0eaec9e
5 changed files with 65 additions and 0 deletions

9
.gitignore vendored
View File

@ -10,3 +10,12 @@ compile_commands.json
# SPACEBOX
BPmono.ttf
# Builds
*.x86_64
cakefoot.js
cakefoot_debug.html
cakefoot_debug.js
# Repository
local/

View File

@ -0,0 +1,4 @@
fun:strncmp
fun:strncmp*
fun:wasm-function[20197]
fun:wasm-function[20197]*

22
config_wasm.json Normal file
View File

@ -0,0 +1,22 @@
{
"display":
{
"render driver": "opengles2",
"fluid resize": false
},
"recording":
{
"enabled": false
},
"log":
{
"enabled": false
},
"configuration":
{
"auto-refresh": false
}
}

View File

@ -0,0 +1 @@
Module.ASAN_OPTIONS = "sanitize-ignorelist=clang_sanitize_ignorelist.txt"

29
index.html Normal file
View File

@ -0,0 +1,29 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta charset="utf-8">
<style>
body
{
background: #000;
}
</style>
</head>
<body>
<!-- WebGL output will be drawn here through Emscripten. The dimensions will be set by Emscripten. -->
<canvas id="canvas"></canvas>
<script>
var Module = {
/* Set Emscripten to use a canvas for display. */
canvas: document.getElementById("canvas")
};
</script>
<!-- This file is built by Emscripten when compiling the program -->
<script src="cakefoot.js"></script>
</body>
</html>