mirror of https://github.com/mosra/magnum.git
3 changed files with 53 additions and 1 deletions
@ -0,0 +1,18 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html> |
||||||
|
<head> |
||||||
|
<meta charset="UTF-8" /> |
||||||
|
<title>Magnum Sdl2Application Test</title> |
||||||
|
<link rel="stylesheet" href="WebApplication.css" /> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<h1>Magnum Sdl2Application Test</h1> |
||||||
|
<div id="listener"> |
||||||
|
<canvas id="module"></canvas> |
||||||
|
<div id="status">Initialization...</div> |
||||||
|
<div id="statusDescription"></div> |
||||||
|
<script src="EmscriptenApplication.js"></script> |
||||||
|
<script async="async" src="PlatformSdl2ApplicationTest.js"></script> |
||||||
|
</div> |
||||||
|
</body> |
||||||
|
</html> |
||||||
@ -0,0 +1,19 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html> |
||||||
|
<head> |
||||||
|
<meta charset="UTF-8" /> |
||||||
|
<title>Magnum WindowlessEglApplication Test</title> |
||||||
|
<link rel="stylesheet" href="WebApplication.css" /> |
||||||
|
</head> |
||||||
|
<body> |
||||||
|
<h1>Magnum WindowlessEglApplication Test</h1> |
||||||
|
<div id="listener"> |
||||||
|
<canvas id="module" class="hidden"></canvas> |
||||||
|
<pre id="log"></pre> |
||||||
|
<div id="status">Initialization...</div> |
||||||
|
<div id="statusDescription"></div> |
||||||
|
<script src="WindowlessEmscriptenApplication.js"></script> |
||||||
|
<script async="async" src="PlatformWindowlessEglApplicationTest.js"></script> |
||||||
|
</div> |
||||||
|
</body> |
||||||
|
</html> |
||||||
Loading…
Reference in new issue