├── EXAMPLES.md ├── LICENSE ├── README.md ├── gluon └── webgl │ ├── Extension.hx │ ├── GLActiveInfo.hx │ ├── GLBuffer.hx │ ├── GLContext.hx │ ├── GLContextAttributes.hx │ ├── GLContextDebug.hx │ ├── GLFramebuffer.hx │ ├── GLProgram.hx │ ├── GLRenderbuffer.hx │ ├── GLShader.hx │ ├── GLShaderPrecisionFormat.hx │ ├── GLTexture.hx │ ├── GLUniformLocation.hx │ ├── extension │ ├── ANGLEInstancedArrays.hx │ ├── EXTBlendMinmax.hx │ ├── EXTColorBufferFloat.hx │ ├── EXTColorBufferHalfFloat.hx │ ├── EXTDisjointTimerQuery.hx │ ├── EXTFragDepth.hx │ ├── EXTShaderTextureLod.hx │ ├── EXTSrgb.hx │ ├── EXTTextureFilterAnisotropic.hx │ ├── OESElementIndexUint.hx │ ├── OESStandardDerivatives.hx │ ├── OESTextureFloat.hx │ ├── OESTextureFloatLinear.hx │ ├── OESTextureHalfFloat.hx │ ├── OESTextureHalfFloatLinear.hx │ ├── OESVertexArrayObject.hx │ ├── WEBGLColorBufferFloat.hx │ ├── WEBGLCompressedTextureAstc.hx │ ├── WEBGLCompressedTextureAtc.hx │ ├── WEBGLCompressedTextureEtc.hx │ ├── WEBGLCompressedTextureEtc1.hx │ ├── WEBGLCompressedTexturePvrtc.hx │ ├── WEBGLCompressedTextureS3tc.hx │ ├── WEBGLCompressedTextureS3tcSrgb.hx │ ├── WEBGLDebugRendererInfo.hx │ ├── WEBGLDebugShaders.hx │ ├── WEBGLDepthTexture.hx │ ├── WEBGLDrawBuffers.hx │ └── WEBGLLoseContext.hx │ └── native │ ├── ES2Context.h │ ├── ES2Context.hx │ ├── GLBuffer.hx │ ├── GLContext.hx │ ├── GLFramebuffer.hx │ ├── GLObject.hx │ ├── GLProgram.hx │ ├── GLRenderbuffer.hx │ ├── GLShader.hx │ ├── GLTexture.hx │ ├── glew.c │ └── include │ ├── GL │ ├── eglew.h │ ├── glew.h │ ├── glxew.h │ └── wglew.h │ ├── GLES2 │ ├── gl2.h │ ├── gl2ext.h │ └── gl2platform.h │ └── KHR │ └── khrplatform.h ├── haxelib.json ├── test ├── .gitignore ├── gluon │ ├── Example.hx │ ├── build.hxml │ └── mac │ │ ├── Makefile │ │ ├── lib │ │ ├── khronos_headers │ │ │ ├── CL1.2 │ │ │ │ └── CL │ │ │ │ │ ├── cl.h │ │ │ │ │ ├── cl.hpp │ │ │ │ │ ├── cl_d3d10.h │ │ │ │ │ ├── cl_d3d11.h │ │ │ │ │ ├── cl_dx9_media_sharing.h │ │ │ │ │ ├── cl_egl.h │ │ │ │ │ ├── cl_ext.h │ │ │ │ │ ├── cl_gl.h │ │ │ │ │ ├── cl_gl_ext.h │ │ │ │ │ ├── cl_platform.h │ │ │ │ │ └── opencl.h │ │ │ ├── CL2.0 │ │ │ │ └── CL │ │ │ │ │ ├── cl.h │ │ │ │ │ ├── cl_d3d10.h │ │ │ │ │ ├── cl_d3d11.h │ │ │ │ │ ├── cl_dx9_media_sharing.h │ │ │ │ │ ├── cl_egl.h │ │ │ │ │ ├── cl_ext.h │ │ │ │ │ ├── cl_gl.h │ │ │ │ │ ├── cl_gl_ext.h │ │ │ │ │ ├── cl_platform.h │ │ │ │ │ └── opencl.h │ │ │ ├── EGL │ │ │ │ ├── egl.h │ │ │ │ ├── eglext.h │ │ │ │ └── eglplatform.h │ │ │ ├── GL │ │ │ │ ├── glcorearb.h │ │ │ │ ├── glext.h │ │ │ │ ├── glxext.h │ │ │ │ └── wglext.h │ │ │ ├── GLES │ │ │ │ ├── egl.h │ │ │ │ ├── gl.h │ │ │ │ ├── glext.h │ │ │ │ └── glplatform.h │ │ │ ├── GLES2 │ │ │ │ ├── gl2.h │ │ │ │ ├── gl2ext.h │ │ │ │ └── gl2platform.h │ │ │ ├── GLES3 │ │ │ │ ├── gl3.h │ │ │ │ ├── gl31.h │ │ │ │ └── gl3platform.h │ │ │ ├── KD │ │ │ │ ├── KHR_float64.h │ │ │ │ ├── KHR_formatted.h │ │ │ │ ├── KHR_perfcounter.h │ │ │ │ ├── KHR_thread_storage.h │ │ │ │ ├── kd.h │ │ │ │ └── kdplatform.h │ │ │ ├── KHR │ │ │ │ └── khrplatform.h │ │ │ ├── VG │ │ │ │ ├── openvg.h │ │ │ │ ├── vgext.h │ │ │ │ ├── vgplatform.h │ │ │ │ └── vgu.h │ │ │ └── WF │ │ │ │ ├── wfc.h │ │ │ │ ├── wfcext.h │ │ │ │ ├── wfcplatform.h │ │ │ │ ├── wfd.h │ │ │ │ ├── wfdext.h │ │ │ │ └── wfdplatform.h │ │ └── powervr_gles │ │ │ ├── libEGL.dylib │ │ │ └── libGLESv2.dylib │ │ └── main.mm └── typedarray │ ├── Main.hx │ ├── test-all.hxml │ ├── test-cpp.hxml │ ├── test-eval.hxml │ └── test-js.hxml └── typedarray ├── ArrayBuffer.hx ├── ArrayBufferView.hx ├── BufferSource.hx ├── DataView.hx ├── Float32Array.hx ├── Float64Array.hx ├── Int16Array.hx ├── Int32Array.hx ├── Int8Array.hx ├── Uint16Array.hx ├── Uint32Array.hx ├── Uint8Array.hx ├── Uint8ClampedArray.hx └── macro └── BuildArrayBufferView.hx /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/README.md -------------------------------------------------------------------------------- /gluon/webgl/Extension.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/Extension.hx -------------------------------------------------------------------------------- /gluon/webgl/GLActiveInfo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLActiveInfo.hx -------------------------------------------------------------------------------- /gluon/webgl/GLBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLBuffer.hx -------------------------------------------------------------------------------- /gluon/webgl/GLContext.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLContext.hx -------------------------------------------------------------------------------- /gluon/webgl/GLContextAttributes.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLContextAttributes.hx -------------------------------------------------------------------------------- /gluon/webgl/GLContextDebug.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLContextDebug.hx -------------------------------------------------------------------------------- /gluon/webgl/GLFramebuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLFramebuffer.hx -------------------------------------------------------------------------------- /gluon/webgl/GLProgram.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLProgram.hx -------------------------------------------------------------------------------- /gluon/webgl/GLRenderbuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLRenderbuffer.hx -------------------------------------------------------------------------------- /gluon/webgl/GLShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLShader.hx -------------------------------------------------------------------------------- /gluon/webgl/GLShaderPrecisionFormat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLShaderPrecisionFormat.hx -------------------------------------------------------------------------------- /gluon/webgl/GLTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLTexture.hx -------------------------------------------------------------------------------- /gluon/webgl/GLUniformLocation.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/GLUniformLocation.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/ANGLEInstancedArrays.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/ANGLEInstancedArrays.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/EXTBlendMinmax.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/EXTBlendMinmax.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/EXTColorBufferFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/EXTColorBufferFloat.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/EXTColorBufferHalfFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/EXTColorBufferHalfFloat.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/EXTDisjointTimerQuery.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/EXTDisjointTimerQuery.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/EXTFragDepth.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/EXTFragDepth.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/EXTShaderTextureLod.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/EXTShaderTextureLod.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/EXTSrgb.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/EXTSrgb.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/EXTTextureFilterAnisotropic.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/EXTTextureFilterAnisotropic.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/OESElementIndexUint.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/OESElementIndexUint.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/OESStandardDerivatives.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/OESStandardDerivatives.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/OESTextureFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/OESTextureFloat.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/OESTextureFloatLinear.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/OESTextureFloatLinear.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/OESTextureHalfFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/OESTextureHalfFloat.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/OESTextureHalfFloatLinear.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/OESTextureHalfFloatLinear.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/OESVertexArrayObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/OESVertexArrayObject.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLColorBufferFloat.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLColorBufferFloat.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLCompressedTextureAstc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLCompressedTextureAstc.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLCompressedTextureAtc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLCompressedTextureAtc.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLCompressedTextureEtc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLCompressedTextureEtc.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLCompressedTextureEtc1.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLCompressedTextureEtc1.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLCompressedTexturePvrtc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLCompressedTexturePvrtc.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLCompressedTextureS3tc.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLCompressedTextureS3tc.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLCompressedTextureS3tcSrgb.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLCompressedTextureS3tcSrgb.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLDebugRendererInfo.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLDebugRendererInfo.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLDebugShaders.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLDebugShaders.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLDepthTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLDepthTexture.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLDrawBuffers.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLDrawBuffers.hx -------------------------------------------------------------------------------- /gluon/webgl/extension/WEBGLLoseContext.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/extension/WEBGLLoseContext.hx -------------------------------------------------------------------------------- /gluon/webgl/native/ES2Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/ES2Context.h -------------------------------------------------------------------------------- /gluon/webgl/native/ES2Context.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/ES2Context.hx -------------------------------------------------------------------------------- /gluon/webgl/native/GLBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/GLBuffer.hx -------------------------------------------------------------------------------- /gluon/webgl/native/GLContext.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/GLContext.hx -------------------------------------------------------------------------------- /gluon/webgl/native/GLFramebuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/GLFramebuffer.hx -------------------------------------------------------------------------------- /gluon/webgl/native/GLObject.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/GLObject.hx -------------------------------------------------------------------------------- /gluon/webgl/native/GLProgram.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/GLProgram.hx -------------------------------------------------------------------------------- /gluon/webgl/native/GLRenderbuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/GLRenderbuffer.hx -------------------------------------------------------------------------------- /gluon/webgl/native/GLShader.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/GLShader.hx -------------------------------------------------------------------------------- /gluon/webgl/native/GLTexture.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/GLTexture.hx -------------------------------------------------------------------------------- /gluon/webgl/native/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/glew.c -------------------------------------------------------------------------------- /gluon/webgl/native/include/GL/eglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/include/GL/eglew.h -------------------------------------------------------------------------------- /gluon/webgl/native/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/include/GL/glew.h -------------------------------------------------------------------------------- /gluon/webgl/native/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/include/GL/glxew.h -------------------------------------------------------------------------------- /gluon/webgl/native/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/include/GL/wglew.h -------------------------------------------------------------------------------- /gluon/webgl/native/include/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/include/GLES2/gl2.h -------------------------------------------------------------------------------- /gluon/webgl/native/include/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/include/GLES2/gl2ext.h -------------------------------------------------------------------------------- /gluon/webgl/native/include/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/include/GLES2/gl2platform.h -------------------------------------------------------------------------------- /gluon/webgl/native/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/gluon/webgl/native/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/haxelib.json -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | bin -------------------------------------------------------------------------------- /test/gluon/Example.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/Example.hx -------------------------------------------------------------------------------- /test/gluon/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/build.hxml -------------------------------------------------------------------------------- /test/gluon/mac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/Makefile -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl.hpp -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_d3d10.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_d3d11.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_egl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_ext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_gl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/cl_platform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL1.2/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL1.2/CL/opencl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_d3d10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_d3d10.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_d3d11.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_dx9_media_sharing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_dx9_media_sharing.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_egl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_ext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_gl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/cl_platform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/CL2.0/CL/opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/CL2.0/CL/opencl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/EGL/egl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/EGL/eglext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/EGL/eglplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/EGL/eglplatform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GL/glcorearb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GL/glcorearb.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GL/glext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GL/glxext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GL/wglext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES/egl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES/gl.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES/glext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES/glplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES/glplatform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES2/gl2.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES2/gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES2/gl2ext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES2/gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES2/gl2platform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES3/gl3.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES3/gl31.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES3/gl31.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/GLES3/gl3platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/GLES3/gl3platform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/KD/KHR_float64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/KD/KHR_float64.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/KD/KHR_formatted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/KD/KHR_formatted.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/KD/KHR_perfcounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/KD/KHR_perfcounter.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/KD/KHR_thread_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/KD/KHR_thread_storage.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/KD/kd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/KD/kd.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/KD/kdplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/KD/kdplatform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/KHR/khrplatform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/VG/openvg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/VG/openvg.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/VG/vgext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/VG/vgext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/VG/vgplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/VG/vgplatform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/VG/vgu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/VG/vgu.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/WF/wfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/WF/wfc.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/WF/wfcext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/WF/wfcext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/WF/wfcplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/WF/wfcplatform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/WF/wfd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/WF/wfd.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/WF/wfdext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/WF/wfdext.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/khronos_headers/WF/wfdplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/khronos_headers/WF/wfdplatform.h -------------------------------------------------------------------------------- /test/gluon/mac/lib/powervr_gles/libEGL.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/powervr_gles/libEGL.dylib -------------------------------------------------------------------------------- /test/gluon/mac/lib/powervr_gles/libGLESv2.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/lib/powervr_gles/libGLESv2.dylib -------------------------------------------------------------------------------- /test/gluon/mac/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/gluon/mac/main.mm -------------------------------------------------------------------------------- /test/typedarray/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/typedarray/Main.hx -------------------------------------------------------------------------------- /test/typedarray/test-all.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/typedarray/test-all.hxml -------------------------------------------------------------------------------- /test/typedarray/test-cpp.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/typedarray/test-cpp.hxml -------------------------------------------------------------------------------- /test/typedarray/test-eval.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/typedarray/test-eval.hxml -------------------------------------------------------------------------------- /test/typedarray/test-js.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/test/typedarray/test-js.hxml -------------------------------------------------------------------------------- /typedarray/ArrayBuffer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/ArrayBuffer.hx -------------------------------------------------------------------------------- /typedarray/ArrayBufferView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/ArrayBufferView.hx -------------------------------------------------------------------------------- /typedarray/BufferSource.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/BufferSource.hx -------------------------------------------------------------------------------- /typedarray/DataView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/DataView.hx -------------------------------------------------------------------------------- /typedarray/Float32Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Float32Array.hx -------------------------------------------------------------------------------- /typedarray/Float64Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Float64Array.hx -------------------------------------------------------------------------------- /typedarray/Int16Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Int16Array.hx -------------------------------------------------------------------------------- /typedarray/Int32Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Int32Array.hx -------------------------------------------------------------------------------- /typedarray/Int8Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Int8Array.hx -------------------------------------------------------------------------------- /typedarray/Uint16Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Uint16Array.hx -------------------------------------------------------------------------------- /typedarray/Uint32Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Uint32Array.hx -------------------------------------------------------------------------------- /typedarray/Uint8Array.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Uint8Array.hx -------------------------------------------------------------------------------- /typedarray/Uint8ClampedArray.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/Uint8ClampedArray.hx -------------------------------------------------------------------------------- /typedarray/macro/BuildArrayBufferView.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haxiomic/gluon/HEAD/typedarray/macro/BuildArrayBufferView.hx --------------------------------------------------------------------------------