├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── main.yml ├── .gitignore ├── Build.hx ├── LICENSE ├── README.md ├── Test.hx ├── haxelib.json ├── hxformat.json ├── js.hxml ├── res └── parrot.png ├── samples └── light │ ├── Camera.hx │ ├── Light.hx │ └── LightingShader.hx ├── src ├── arcane │ ├── Assets.hx │ ├── FastFloat.hx │ ├── Geometry.hx │ ├── Image.hx │ ├── Lib.hx │ ├── Utils.hx │ ├── arrays │ │ ├── ArrayBuffer.hl.hx │ │ ├── ArrayBuffer.hx │ │ ├── ArrayBuffer.js.hx │ │ ├── Float32Array.hl.hx │ │ ├── Float32Array.hx │ │ ├── Float32Array.js.hx │ │ ├── Int32Array.hl.hx │ │ ├── Int32Array.hx │ │ ├── Int32Array.js.hx │ │ ├── UInt16Array.hl.hx │ │ ├── UInt16Array.hx │ │ └── UInt16Array.js.hx │ ├── audio │ │ └── IAudioDevice.hx │ ├── gpu │ │ ├── IBindGroup.hx │ │ ├── IBindGroupLayout.hx │ │ ├── ICommandBuffer.hx │ │ ├── ICommandEncoder.hx │ │ ├── IComputePass.hx │ │ ├── IComputePipeline.hx │ │ ├── IGPUDevice.hx │ │ ├── IIndexBuffer.hx │ │ ├── IRenderPass.hx │ │ ├── IRenderPipeline.hx │ │ ├── ISampler.hx │ │ ├── IShaderModule.hx │ │ ├── ITexture.hx │ │ ├── IUniformBuffer.hx │ │ └── IVertexBuffer.hx │ ├── internal │ │ ├── JsUtils.hx │ │ ├── Macros.hx │ │ ├── System.hx │ │ ├── empty │ │ │ ├── EmptyAudioDriver.hx │ │ │ ├── EmptyGraphicsDriver.hx │ │ │ ├── EmptySystem.hx │ │ │ └── ShaderCompiler.hx │ │ ├── hl │ │ │ └── GPUDevice.hx │ │ ├── html5 │ │ │ ├── HTML5ShaderCompiler.hx │ │ │ ├── HTML5System.hx │ │ │ ├── WGPUDriver.hx │ │ │ ├── WebAudioDriver.hx │ │ │ └── WebGL2Driver.hx │ │ └── kinc │ │ │ ├── G5Driver.hx │ │ │ ├── KincAudioDriver.hx │ │ │ ├── KincDriver.hx │ │ │ ├── KincSystem.hx │ │ │ └── KrafixShaderCompiler.hx │ ├── system │ │ ├── Event.hx │ │ └── ISystem.hx │ └── util │ │ ├── Color.hx │ │ ├── Event.hx │ │ ├── IntFlags.hx │ │ ├── Log.hx │ │ ├── Math.hx │ │ ├── ObjectPool.hx │ │ ├── Result.hx │ │ ├── Signal.hx │ │ ├── SignalDispatcher.hx │ │ ├── ThreadPool.hx │ │ ├── Tuple.hx │ │ └── Version.hx ├── asl │ ├── Ast.hx │ ├── Glsl.hx │ ├── GlslOut.hx │ ├── Macros.hx │ ├── Shader.hx │ ├── Typer.hx │ ├── WGSLOut.hx │ └── std │ │ ├── Builtins.hx │ │ ├── StdLib.hx │ │ └── StdLib.macro.hx └── import.hx ├── tests.hxml ├── tests ├── Main.hx ├── common │ ├── TestEvent.hx │ ├── TestMath.hx │ └── TestVersion.hx └── import.hx └── tools ├── FileSystemUtils.hx └── Main.hx /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/README.md -------------------------------------------------------------------------------- /Test.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/Test.hx -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/haxelib.json -------------------------------------------------------------------------------- /hxformat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/hxformat.json -------------------------------------------------------------------------------- /js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/js.hxml -------------------------------------------------------------------------------- /res/parrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/res/parrot.png -------------------------------------------------------------------------------- /samples/light/Camera.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/samples/light/Camera.hx -------------------------------------------------------------------------------- /samples/light/Light.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/samples/light/Light.hx -------------------------------------------------------------------------------- /samples/light/LightingShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/samples/light/LightingShader.hx -------------------------------------------------------------------------------- /src/arcane/Assets.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/Assets.hx -------------------------------------------------------------------------------- /src/arcane/FastFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/FastFloat.hx -------------------------------------------------------------------------------- /src/arcane/Geometry.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/Geometry.hx -------------------------------------------------------------------------------- /src/arcane/Image.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/Image.hx -------------------------------------------------------------------------------- /src/arcane/Lib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/Lib.hx -------------------------------------------------------------------------------- /src/arcane/Utils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/Utils.hx -------------------------------------------------------------------------------- /src/arcane/arrays/ArrayBuffer.hl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/ArrayBuffer.hl.hx -------------------------------------------------------------------------------- /src/arcane/arrays/ArrayBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/ArrayBuffer.hx -------------------------------------------------------------------------------- /src/arcane/arrays/ArrayBuffer.js.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/ArrayBuffer.js.hx -------------------------------------------------------------------------------- /src/arcane/arrays/Float32Array.hl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/Float32Array.hl.hx -------------------------------------------------------------------------------- /src/arcane/arrays/Float32Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/Float32Array.hx -------------------------------------------------------------------------------- /src/arcane/arrays/Float32Array.js.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/Float32Array.js.hx -------------------------------------------------------------------------------- /src/arcane/arrays/Int32Array.hl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/Int32Array.hl.hx -------------------------------------------------------------------------------- /src/arcane/arrays/Int32Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/Int32Array.hx -------------------------------------------------------------------------------- /src/arcane/arrays/Int32Array.js.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/Int32Array.js.hx -------------------------------------------------------------------------------- /src/arcane/arrays/UInt16Array.hl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/UInt16Array.hl.hx -------------------------------------------------------------------------------- /src/arcane/arrays/UInt16Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/UInt16Array.hx -------------------------------------------------------------------------------- /src/arcane/arrays/UInt16Array.js.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/arrays/UInt16Array.js.hx -------------------------------------------------------------------------------- /src/arcane/audio/IAudioDevice.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/audio/IAudioDevice.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IBindGroup.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IBindGroup.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IBindGroupLayout.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IBindGroupLayout.hx -------------------------------------------------------------------------------- /src/arcane/gpu/ICommandBuffer.hx: -------------------------------------------------------------------------------- 1 | package arcane.gpu; 2 | 3 | interface ICommandBuffer {} 4 | -------------------------------------------------------------------------------- /src/arcane/gpu/ICommandEncoder.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/ICommandEncoder.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IComputePass.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IComputePass.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IComputePipeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IComputePipeline.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IGPUDevice.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IGPUDevice.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IIndexBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IIndexBuffer.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IRenderPass.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IRenderPass.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IRenderPipeline.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IRenderPipeline.hx -------------------------------------------------------------------------------- /src/arcane/gpu/ISampler.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/ISampler.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IShaderModule.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IShaderModule.hx -------------------------------------------------------------------------------- /src/arcane/gpu/ITexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/ITexture.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IUniformBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IUniformBuffer.hx -------------------------------------------------------------------------------- /src/arcane/gpu/IVertexBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/gpu/IVertexBuffer.hx -------------------------------------------------------------------------------- /src/arcane/internal/JsUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/JsUtils.hx -------------------------------------------------------------------------------- /src/arcane/internal/Macros.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/Macros.hx -------------------------------------------------------------------------------- /src/arcane/internal/System.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/System.hx -------------------------------------------------------------------------------- /src/arcane/internal/empty/EmptyAudioDriver.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/empty/EmptyAudioDriver.hx -------------------------------------------------------------------------------- /src/arcane/internal/empty/EmptyGraphicsDriver.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/empty/EmptyGraphicsDriver.hx -------------------------------------------------------------------------------- /src/arcane/internal/empty/EmptySystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/empty/EmptySystem.hx -------------------------------------------------------------------------------- /src/arcane/internal/empty/ShaderCompiler.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/empty/ShaderCompiler.hx -------------------------------------------------------------------------------- /src/arcane/internal/hl/GPUDevice.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/hl/GPUDevice.hx -------------------------------------------------------------------------------- /src/arcane/internal/html5/HTML5ShaderCompiler.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/html5/HTML5ShaderCompiler.hx -------------------------------------------------------------------------------- /src/arcane/internal/html5/HTML5System.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/html5/HTML5System.hx -------------------------------------------------------------------------------- /src/arcane/internal/html5/WGPUDriver.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/html5/WGPUDriver.hx -------------------------------------------------------------------------------- /src/arcane/internal/html5/WebAudioDriver.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/html5/WebAudioDriver.hx -------------------------------------------------------------------------------- /src/arcane/internal/html5/WebGL2Driver.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/html5/WebGL2Driver.hx -------------------------------------------------------------------------------- /src/arcane/internal/kinc/G5Driver.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/kinc/G5Driver.hx -------------------------------------------------------------------------------- /src/arcane/internal/kinc/KincAudioDriver.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/kinc/KincAudioDriver.hx -------------------------------------------------------------------------------- /src/arcane/internal/kinc/KincDriver.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/kinc/KincDriver.hx -------------------------------------------------------------------------------- /src/arcane/internal/kinc/KincSystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/kinc/KincSystem.hx -------------------------------------------------------------------------------- /src/arcane/internal/kinc/KrafixShaderCompiler.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/internal/kinc/KrafixShaderCompiler.hx -------------------------------------------------------------------------------- /src/arcane/system/Event.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/system/Event.hx -------------------------------------------------------------------------------- /src/arcane/system/ISystem.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/system/ISystem.hx -------------------------------------------------------------------------------- /src/arcane/util/Color.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/Color.hx -------------------------------------------------------------------------------- /src/arcane/util/Event.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/Event.hx -------------------------------------------------------------------------------- /src/arcane/util/IntFlags.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/IntFlags.hx -------------------------------------------------------------------------------- /src/arcane/util/Log.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/Log.hx -------------------------------------------------------------------------------- /src/arcane/util/Math.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/Math.hx -------------------------------------------------------------------------------- /src/arcane/util/ObjectPool.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/ObjectPool.hx -------------------------------------------------------------------------------- /src/arcane/util/Result.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/Result.hx -------------------------------------------------------------------------------- /src/arcane/util/Signal.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/Signal.hx -------------------------------------------------------------------------------- /src/arcane/util/SignalDispatcher.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/SignalDispatcher.hx -------------------------------------------------------------------------------- /src/arcane/util/ThreadPool.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/ThreadPool.hx -------------------------------------------------------------------------------- /src/arcane/util/Tuple.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/Tuple.hx -------------------------------------------------------------------------------- /src/arcane/util/Version.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/arcane/util/Version.hx -------------------------------------------------------------------------------- /src/asl/Ast.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/Ast.hx -------------------------------------------------------------------------------- /src/asl/Glsl.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/Glsl.hx -------------------------------------------------------------------------------- /src/asl/GlslOut.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/GlslOut.hx -------------------------------------------------------------------------------- /src/asl/Macros.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/Macros.hx -------------------------------------------------------------------------------- /src/asl/Shader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/Shader.hx -------------------------------------------------------------------------------- /src/asl/Typer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/Typer.hx -------------------------------------------------------------------------------- /src/asl/WGSLOut.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/WGSLOut.hx -------------------------------------------------------------------------------- /src/asl/std/Builtins.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/std/Builtins.hx -------------------------------------------------------------------------------- /src/asl/std/StdLib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/std/StdLib.hx -------------------------------------------------------------------------------- /src/asl/std/StdLib.macro.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/src/asl/std/StdLib.macro.hx -------------------------------------------------------------------------------- /src/import.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/tests.hxml -------------------------------------------------------------------------------- /tests/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/tests/Main.hx -------------------------------------------------------------------------------- /tests/common/TestEvent.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/tests/common/TestEvent.hx -------------------------------------------------------------------------------- /tests/common/TestMath.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/tests/common/TestMath.hx -------------------------------------------------------------------------------- /tests/common/TestVersion.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/tests/common/TestVersion.hx -------------------------------------------------------------------------------- /tests/import.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/tests/import.hx -------------------------------------------------------------------------------- /tools/FileSystemUtils.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/tools/FileSystemUtils.hx -------------------------------------------------------------------------------- /tools/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apprentice-Alchemist/Arcane/HEAD/tools/Main.hx --------------------------------------------------------------------------------