├── .editorconfig ├── .gitignore ├── ChangeLog.txt ├── Credits.txt ├── Lib ├── Tao │ └── 2.1.0.0 │ │ ├── DevIL.dll │ │ ├── ILU.dll │ │ ├── ILUT.dll │ │ ├── OpenAL32.dll │ │ ├── SDL.dll │ │ ├── SDL_gfx.dll │ │ ├── SDL_image.dll │ │ ├── SDL_mixer.dll │ │ ├── SDL_net.dll │ │ ├── SDL_ttf.dll │ │ ├── Tao.Cg.License.txt │ │ ├── Tao.Cg.Readme.txt │ │ ├── Tao.Cg.dll │ │ ├── Tao.Cg.dll.config │ │ ├── Tao.Cg.xml │ │ ├── Tao.DevIl.License.txt │ │ ├── Tao.DevIl.Readme.txt │ │ ├── Tao.DevIl.dll │ │ ├── Tao.DevIl.dll.config │ │ ├── Tao.DevIl.xml │ │ ├── Tao.FFmpeg.dll │ │ ├── Tao.FFmpeg.dll.config │ │ ├── Tao.FFmpeg.xml │ │ ├── Tao.FreeGlut.dll │ │ ├── Tao.FreeGlut.dll.config │ │ ├── Tao.FreeGlut.xml │ │ ├── Tao.FreeType.dll │ │ ├── Tao.FreeType.dll.config │ │ ├── Tao.FreeType.xml │ │ ├── Tao.Glfw.dll │ │ ├── Tao.Glfw.dll.config │ │ ├── Tao.Glfw.xml │ │ ├── Tao.Lua.dll │ │ ├── Tao.Lua.dll.build │ │ ├── Tao.Lua.xml │ │ ├── Tao.Ode.dll │ │ ├── Tao.Ode.dll.config │ │ ├── Tao.Ode.xml │ │ ├── Tao.OpenAl.dll │ │ ├── Tao.OpenAl.dll.config │ │ ├── Tao.OpenAl.xml │ │ ├── Tao.OpenGl.License.txt │ │ ├── Tao.OpenGl.Readme.txt │ │ ├── Tao.OpenGl.dll │ │ ├── Tao.OpenGl.dll.config │ │ ├── Tao.OpenGl.xml │ │ ├── Tao.PhysFs.dll │ │ ├── Tao.PhysFs.dll.config │ │ ├── Tao.PhysFs.xml │ │ ├── Tao.Platform.Windows.License.txt │ │ ├── Tao.Platform.Windows.Readme.txt │ │ ├── Tao.Platform.Windows.dll │ │ ├── Tao.Platform.Windows.xml │ │ ├── Tao.Platform.X11.dll │ │ ├── Tao.Platform.X11.dll.config │ │ ├── Tao.Platform.X11.xml │ │ ├── Tao.Sdl.dll │ │ ├── Tao.Sdl.dll.config │ │ ├── Tao.Sdl.xml │ │ ├── alut.dll │ │ ├── avcodec-51.dll │ │ ├── avformat-51.dll │ │ ├── avutil-49.dll │ │ ├── cg.dll │ │ ├── cg.dll.txt │ │ ├── cgGL.dll │ │ ├── freeglut.dll │ │ ├── freetype6.dll │ │ ├── glfw.dll │ │ ├── jpeg.dll │ │ ├── libfreetype-6.dll │ │ ├── libogg-0.dll │ │ ├── libpng12-0.dll │ │ ├── libpng12.dll │ │ ├── libtiff-3.dll │ │ ├── libtiff.dll │ │ ├── libvorbis-0.dll │ │ ├── libvorbisfile-3.dll │ │ ├── lua5.1.dll │ │ ├── lua51.dll │ │ ├── nvparse.dll.txt │ │ ├── ode.dll │ │ ├── physfs.dll │ │ ├── pthreadGC2.dll │ │ ├── smpeg.dll │ │ ├── swscale-0.dll │ │ ├── wrap_oal.dll │ │ └── zlib1.dll └── linux-deps-ReadMe.txt ├── Nuget.config ├── Source ├── Axiom.PreSettings.targets ├── Axiom.sln ├── Components │ ├── Axiom.Components.Paging │ │ ├── Axiom.Components.Paging.csproj │ │ ├── Grid2DPageStrategyData.cs │ │ ├── Grid2PageStrategy.cs │ │ ├── IPageContentCollectionFactory.cs │ │ ├── IPageContentFactory.cs │ │ ├── IPageStrategyData.cs │ │ ├── Page.cs │ │ ├── PageContent.cs │ │ ├── PageContentCollection.cs │ │ ├── PageID.cs │ │ ├── PageManager.cs │ │ ├── PageProvider.cs │ │ ├── PageStrategy.cs │ │ ├── PagedWorld.cs │ │ ├── PagedWorldSection.cs │ │ ├── SimplePageContentCollection.cs │ │ └── SimplePageContentCollectionFactory.cs │ ├── Axiom.Components.RTShaderSystem │ │ ├── Axiom.Components.RTShaderSystem.csproj │ │ ├── CGProgramProcessor.cs │ │ ├── CGProgramWriter.cs │ │ ├── DualQuaternionSkinning.cs │ │ ├── FFPColor.cs │ │ ├── FFPFog.cs │ │ ├── FFPLighting.cs │ │ ├── FFPRenderState.cs │ │ ├── FFPRenderStateBuilder.cs │ │ ├── FFPTexturing.cs │ │ ├── FFPTransform.cs │ │ ├── Factories │ │ │ ├── FFPColorFactory.cs │ │ │ ├── FFPFogFactory.cs │ │ │ ├── FFPLightingFactory.cs │ │ │ ├── FFPTexturingFactory.cs │ │ │ ├── FFPTransformFactory.cs │ │ │ ├── HardwareSkinningFactory.cs │ │ │ ├── IntegratedPSSM3Factory.cs │ │ │ ├── LayerBlendingFactory.cs │ │ │ ├── NormalMapLightingFactory.cs │ │ │ └── PerPixelLightingFactory.cs │ │ ├── Function.cs │ │ ├── FunctionAtom.cs │ │ ├── FunctionInvocation.cs │ │ ├── GLSLESProgramProcessor.cs │ │ ├── GLSLESProgramWriter.cs │ │ ├── GLSLProgramProcessor.cs │ │ ├── GLSLProgramWriter.cs │ │ ├── HLSLProgramProcessor.cs │ │ ├── HLSLProgramWriter.cs │ │ ├── HardwareSkinning.cs │ │ ├── HardwareSkinningTechnique.cs │ │ ├── IntegratedPSSM3.cs │ │ ├── LayeredBlending.cs │ │ ├── LinearSkinning.cs │ │ ├── MergeParameter.cs │ │ ├── NormalMapLighting.cs │ │ ├── Operand.cs │ │ ├── Parameter.cs │ │ ├── PerPixelLighting.cs │ │ ├── Program.cs │ │ ├── ProgramManager.cs │ │ ├── ProgramProcessor.cs │ │ ├── ProgramSet.cs │ │ ├── ProgramWriteManager.cs │ │ ├── ProgramWriter.cs │ │ ├── ProgramWriterCGFactory.cs │ │ ├── ProgramWriterFactory.cs │ │ ├── ProgramWriterGLSLESFactory.cs │ │ ├── ProgramWriterGLSLFactory.cs │ │ ├── ProgramWriterHLSLFactory.cs │ │ ├── RenderState.cs │ │ ├── SGScriptTranslator.cs │ │ ├── ScriptTranslator.cs │ │ ├── ShaderGenerator.cs │ │ ├── SubRenderState.cs │ │ ├── TextureAtlasSampler.cs │ │ ├── TextureAtlasSamplerFactory.cs │ │ ├── TrackVertexColorType.cs │ │ └── UniformParameter.cs │ └── Axiom.Components.Terrain │ │ ├── Axiom.Components.Terrain.csproj │ │ ├── GpuBufferAllocator.cs │ │ ├── Terrain.cs │ │ ├── TerrainGlobalOptions.cs │ │ ├── TerrainGroup.cs │ │ ├── TerrainLayerBlendMap.cs │ │ ├── TerrainMaterialGenerator.cs │ │ ├── TerrainMaterialGeneratorA.cs │ │ ├── TerrainPagedWorldSection.cs │ │ ├── TerrainPaging.cs │ │ └── TerrainQuadTreeNode.cs ├── Core │ ├── Axiom.Platforms.Android │ │ ├── AndroidAssetArchive.cs │ │ ├── AndroidFolderAssetArchive.cs │ │ ├── AndroidImageCodec.cs │ │ ├── AndroidPlatformManager.cs │ │ ├── AndroidResourceArchive.cs │ │ ├── AndroidZipAssetArchive.cs │ │ ├── Axiom.Platforms.Android.csproj │ │ ├── Plugin.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Axiom.Platforms.Linux │ │ ├── Axiom.Platforms.Linux.csproj │ │ └── LinuxPlatformManager.cs │ ├── Axiom.Platforms.Windows │ │ ├── Axiom.Platforms.Windows.csproj │ │ └── WindowsPlatformManager.cs │ ├── Axiom.Platforms.iOS │ │ ├── Axiom.Platform.iOS.csproj │ │ ├── IPhoneImageCodec.cs │ │ └── IPhoneResourceArchive.cs │ ├── Axiom.Plugins.CgProgramManager │ │ ├── Axiom.Plugins.CgProgramManager.csproj │ │ ├── CgHelper.cs │ │ ├── CgPlugin.cs │ │ ├── CgProgram.cs │ │ └── CgProgramFactory.cs │ ├── Axiom.Plugins.DevILCodecs │ │ ├── Axiom.Plugins.DevILCodecs.csproj │ │ ├── ILImageCodec.cs │ │ ├── ILUtil.cs │ │ └── Plugin.cs │ ├── Axiom.Plugins.FreeImageCodecs │ │ ├── Axiom.Plugins.FreeImageCodecs.csproj │ │ ├── FreeImageCodec.cs │ │ ├── Plugin.cs │ │ └── runtimes │ │ │ ├── linux-arm │ │ │ └── native │ │ │ │ └── libfreeimage-3.17.0.so │ │ │ ├── linux-x64 │ │ │ └── native │ │ │ │ └── libfreeimage-3.17.0.so │ │ │ ├── osx.10.10-x64 │ │ │ └── native │ │ │ │ └── libfreeimage.3.17.0.dylib │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── FreeImage.dll │ │ │ └── win-x86 │ │ │ └── native │ │ │ └── FreeImage.dll │ ├── Axiom.Plugins.ParticleFX │ │ ├── AreaEmitter.cs │ │ ├── Axiom.Plugins.ParticleFX.csproj │ │ ├── BoxEmitter.cs │ │ ├── ColorFaderAffector.cs │ │ ├── ColorFaderAffector2.cs │ │ ├── ColorImageAffector.cs │ │ ├── ColorInterpolatorAffector.cs │ │ ├── CylinderEmitter.cs │ │ ├── DeflectorPlaneAffector.cs │ │ ├── DirectionRandomizerAffector.cs │ │ ├── EllipsoidEmitter.cs │ │ ├── Factories │ │ │ ├── BoxEmitterFactory.cs │ │ │ ├── ColorFaderAffector2Factory.cs │ │ │ ├── ColorFaderAffectorFactory.cs │ │ │ ├── ColorImageAffectorFactory.cs │ │ │ ├── ColorInterpolatorAffectorFactory.cs │ │ │ ├── CylinderEmitterFactory.cs │ │ │ ├── DeflectorPlaneFactory.cs │ │ │ ├── DirectionRandomizerFactory.cs │ │ │ ├── EllipsoidEmitterFactory.cs │ │ │ ├── HollowEllipsoidEmitterFactory.cs │ │ │ ├── LinearForceAffectorFactory.cs │ │ │ ├── PointEmitterFactory.cs │ │ │ ├── RingEmitterFactory.cs │ │ │ ├── RotationAffectorFactory.cs │ │ │ └── ScaleAffectorFactory.cs │ │ ├── HollowEllipsoidEmitter.cs │ │ ├── LinearForceAffector.cs │ │ ├── ParticleFX.cs │ │ ├── PointEmitter.cs │ │ ├── RingEmitter.cs │ │ ├── RotationAffector.cs │ │ └── ScaleAffector.cs │ ├── Axiom.Plugins.SystemDrawingCodecs │ │ ├── Axiom.Plugins.SystemDrawingCodecs.csproj │ │ ├── Plugin.cs │ │ ├── SDImageCodec.cs │ │ └── SDImageLoader.cs │ ├── Axiom.RenderSystems.DirectX11 │ │ ├── Axiom.RenderSystems.DirectX11.csproj │ │ ├── D3D9Device.cs │ │ ├── D3D9DeviceManager.cs │ │ ├── D3D9Driver.cs │ │ ├── D3D9DriverList.cs │ │ ├── D3D9GpuProgram.cs │ │ ├── D3D9GpuProgramManager.cs │ │ ├── D3D9HardwareBufferManager.cs │ │ ├── D3D9HardwareIndexBuffer.cs │ │ ├── D3D9HardwareOcclusionQuery.cs │ │ ├── D3D9HardwarePixelBuffer.cs │ │ ├── D3D9HardwareVertexBuffer.cs │ │ ├── D3D9Helper.cs │ │ ├── D3D9MultiRenderTarget.cs │ │ ├── D3D9Plugin.cs │ │ ├── D3D9RenderSystem.Capabilities.cs │ │ ├── D3D9RenderSystem.Matrix.cs │ │ ├── D3D9RenderSystem.cs │ │ ├── D3D9RenderTexture.cs │ │ ├── D3D9RenderWindow.cs │ │ ├── D3D9ResourceManager.cs │ │ ├── D3D9Texture.cs │ │ ├── D3D9TextureManager.cs │ │ ├── D3D9TextureStageDesc.cs │ │ ├── D3D9TextureType.cs │ │ ├── D3D9VertexDeclaration.cs │ │ ├── D3D9VideoMode.cs │ │ ├── D3D9VideoModeList.cs │ │ ├── DefaultForm.cs │ │ ├── HLSL │ │ │ ├── HLSLIncludeHandler.cs │ │ │ ├── HLSLProgram.cs │ │ │ ├── HLSLProgramFactory.cs │ │ │ └── OptimizationLevel.cs │ │ ├── ID3D9Resource.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ScreenHelper.cs │ │ ├── Win32MessageHandling.cs │ │ ├── WindowClassStyle.cs │ │ ├── WindowStyles.cs │ │ ├── WindowsExtendedStyle.cs │ │ └── packages.config │ ├── Axiom.RenderSystems.DirectX9 │ │ ├── Axiom.RenderSystems.DirectX9.csproj │ │ ├── D3D9Device.cs │ │ ├── D3D9DeviceManager.cs │ │ ├── D3D9Driver.cs │ │ ├── D3D9DriverList.cs │ │ ├── D3D9GpuProgram.cs │ │ ├── D3D9GpuProgramManager.cs │ │ ├── D3D9HardwareBufferManager.cs │ │ ├── D3D9HardwareIndexBuffer.cs │ │ ├── D3D9HardwareOcclusionQuery.cs │ │ ├── D3D9HardwarePixelBuffer.cs │ │ ├── D3D9HardwareVertexBuffer.cs │ │ ├── D3D9Helper.cs │ │ ├── D3D9MultiRenderTarget.cs │ │ ├── D3D9Plugin.cs │ │ ├── D3D9RenderSystem.Capabilities.cs │ │ ├── D3D9RenderSystem.Matrix.cs │ │ ├── D3D9RenderSystem.cs │ │ ├── D3D9RenderTexture.cs │ │ ├── D3D9RenderWindow.cs │ │ ├── D3D9ResourceManager.cs │ │ ├── D3D9Texture.cs │ │ ├── D3D9TextureManager.cs │ │ ├── D3D9TextureStageDesc.cs │ │ ├── D3D9TextureType.cs │ │ ├── D3D9VertexDeclaration.cs │ │ ├── D3D9VideoMode.cs │ │ ├── D3D9VideoModeList.cs │ │ ├── DefaultForm.cs │ │ ├── HLSL │ │ │ ├── HLSLIncludeHandler.cs │ │ │ ├── HLSLProgram.cs │ │ │ ├── HLSLProgramFactory.cs │ │ │ └── OptimizationLevel.cs │ │ ├── ID3D9Resource.cs │ │ ├── ScreenHelper.cs │ │ ├── Win32MessageHandling.cs │ │ ├── WindowClassStyle.cs │ │ ├── WindowStyles.cs │ │ └── WindowsExtendedStyle.cs │ ├── Axiom.RenderSystems.OpenGL │ │ ├── ARBGpuProgram.cs │ │ ├── ATI │ │ │ ├── ATIFragmentShaderGpuProgram.cs │ │ │ ├── Compiler2Pass.cs │ │ │ ├── Enums.cs │ │ │ ├── Lists.cs │ │ │ ├── PixelShader.cs │ │ │ └── Structures.cs │ │ ├── Axiom.RenderSystems.OpenGL.csproj │ │ ├── BaseGLSupport.cs │ │ ├── Diagrams │ │ │ ├── GL Textures.cd │ │ │ └── GPUProgram Hierarchy.cd │ │ ├── GLContext.cs │ │ ├── GLCopyingRTTManager.cs │ │ ├── GLCopyingRenderTexture.cs │ │ ├── GLDefaultHardwareBufferManager.Initialization.cs │ │ ├── GLDefaultHardwareIndexBuffer.cs │ │ ├── GLDefaultHardwareVertexBuffer.cs │ │ ├── GLDepthBuffer.cs │ │ ├── GLFBOMultiRenderTarget.cs │ │ ├── GLFBORTTManager.cs │ │ ├── GLFBORenderTexture.cs │ │ ├── GLFrameBufferObject.cs │ │ ├── GLGpuProgram.cs │ │ ├── GLGpuProgramManager.cs │ │ ├── GLHardwareBufferManager.cs │ │ ├── GLHardwareIndexBuffer.cs │ │ ├── GLHardwareOcclusionQuery.cs │ │ ├── GLHardwarePixelBuffer.cs │ │ ├── GLHardwareVertexBuffer.cs │ │ ├── GLHelper.cs │ │ ├── GLPBRTTManager.cs │ │ ├── GLPBRenderTexture.cs │ │ ├── GLPBuffer.cs │ │ ├── GLPixelUtil.cs │ │ ├── GLRTTManager.cs │ │ ├── GLRenderBuffer.cs │ │ ├── GLRenderSystem.Capabilities.cs │ │ ├── GLRenderSystem.GLEW.cs │ │ ├── GLRenderSystem.Initialization.cs │ │ ├── GLRenderSystem.Render.cs │ │ ├── GLRenderSystem.cs │ │ ├── GLRenderTexture.cs │ │ ├── GLSL │ │ │ ├── GLSLGpuProgram.cs │ │ │ ├── GLSLHelper.cs │ │ │ ├── GLSLLinkProgram.cs │ │ │ ├── GLSLLinkProgramManager.cs │ │ │ ├── GLSLProgram.cs │ │ │ └── GLSLProgramFactory.cs │ │ ├── GLSurfaceDesc.cs │ │ ├── GLTexture.cs │ │ ├── GLTextureBuffer.cs │ │ ├── GLTextureManager.cs │ │ ├── GLX │ │ │ ├── GlxGLSupport.cs │ │ │ ├── XApi.cs │ │ │ └── Xrandr.cs │ │ ├── IOpenGLGpuProgramFactory.cs │ │ ├── Nvidia │ │ │ ├── NV3xGpuProgram.cs │ │ │ └── NvparseFragmentProgram.cs │ │ ├── OpenTK │ │ │ ├── OpenTKGLContext.cs │ │ │ ├── OpenTKGLSupport.cs │ │ │ ├── OpenTKWindow.cs │ │ │ └── OpenTKWindowMessageHandling.cs │ │ ├── Plugin.cs │ │ └── Win32 │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DefaultForm.cs │ │ │ ├── GLHelper.cs │ │ │ ├── GLRenderWindow.cs │ │ │ ├── Win32Context.cs │ │ │ └── Win32MessageHandling.cs │ ├── Axiom.RenderSystems.OpenGLES │ │ ├── Android │ │ │ ├── AndroidContext.cs │ │ │ ├── AndroidSupport.cs │ │ │ └── AndroidWindow.cs │ │ ├── Axiom.RenderSystems.OpenGLES.Droid.csproj │ │ ├── Axiom.RenderSystems.OpenGLES.iOS.csproj │ │ ├── GLES2HardwareBufferManagerBase.cs │ │ ├── GLESConfig.cs │ │ ├── GLESContext.cs │ │ ├── GLESCopyingRTTManager.cs │ │ ├── GLESCopyingRenderTexture.cs │ │ ├── GLESDefaultHardwareBufferManager.cs │ │ ├── GLESDefaultHardwareIndexBuffer.cs │ │ ├── GLESDefaultHardwareVertexBuffer.cs │ │ ├── GLESDepthBuffer.cs │ │ ├── GLESFBOManager.cs │ │ ├── GLESFBOMultiRenderTarget.cs │ │ ├── GLESFBORTTManager.cs │ │ ├── GLESFBORenderTexture.cs │ │ ├── GLESFrameBufferObject.cs │ │ ├── GLESGpuProgramManager.cs │ │ ├── GLESHardwareBufferManager.cs │ │ ├── GLESHardwareBufferManagerBase.cs │ │ ├── GLESHardwareIndexBuffer.cs │ │ ├── GLESHardwarePixelBuffer.cs │ │ ├── GLESHardwareVertexBuffer.cs │ │ ├── GLESPBRTTManager.cs │ │ ├── GLESPBRenderTexture.cs │ │ ├── GLESPBuffer.cs │ │ ├── GLESPixelFormat.cs │ │ ├── GLESPlugin.cs │ │ ├── GLESPrerequisites.cs │ │ ├── GLESRTTManager.cs │ │ ├── GLESRenderBuffer.cs │ │ ├── GLESRenderSystem.cs │ │ ├── GLESRenderTexture.cs │ │ ├── GLESSupport.cs │ │ ├── GLESSurfaceDescription.cs │ │ ├── GLESTexture.cs │ │ ├── GLESTextureBuffer.cs │ │ ├── GLESTextureManager.cs │ │ ├── GLESUtil.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── iOS │ │ │ ├── iOSContext.cs │ │ │ ├── iOSSupport.cs │ │ │ └── iOSWindow.cs │ ├── Axiom.RenderSystems.OpenGLES2 │ │ ├── Android │ │ │ ├── AndroidContext.cs │ │ │ ├── AndroidSupport.cs │ │ │ ├── AndroidWindow.cs │ │ │ └── GLES2RenderSystem.Android.cs │ │ ├── Axiom.RenderSystems.OpenGLES2.Droid.csproj │ │ ├── Axiom.RenderSystems.OpenGLES2.csproj │ │ ├── Axiom.RenderSystems.OpenGLES2.iOS.csproj │ │ ├── EGL │ │ │ ├── EGLSupport.cs │ │ │ └── Win32 │ │ │ │ ├── GLES2RenderSystem.Win32EGL.cs │ │ │ │ ├── Win32EGLContext.cs │ │ │ │ ├── Win32EGLRenderTexture.cs │ │ │ │ ├── Win32EGLSupport.cs │ │ │ │ └── Win32EGLWindow.cs │ │ ├── GLES2Config.cs │ │ ├── GLES2Context.cs │ │ ├── GLES2DefaultHardwareBufferManager.cs │ │ ├── GLES2DefaultHardwareIndexBuffer.cs │ │ ├── GLES2DefaultHardwareVertexBuffer.cs │ │ ├── GLES2DepthBuffer.cs │ │ ├── GLES2FBOManager.cs │ │ ├── GLES2FBOMultipleRenderTarget.cs │ │ ├── GLES2FBORenderTexture.cs │ │ ├── GLES2FrameBufferObject.cs │ │ ├── GLES2GpuProgram.cs │ │ ├── GLES2GpuProgramManager.cs │ │ ├── GLES2HardwareBufferManager.cs │ │ ├── GLES2HardwareBufferManagerBase.cs │ │ ├── GLES2HardwareIndexBuffer.cs │ │ ├── GLES2HardwareOcclusionQuery.cs │ │ ├── GLES2HardwarePixelBuffer.cs │ │ ├── GLES2HardwareVertexBuffer.cs │ │ ├── GLES2InternalShaders.cs │ │ ├── GLES2PixelUtil.cs │ │ ├── GLES2Plugin.cs │ │ ├── GLES2ProgramFactory.cs │ │ ├── GLES2RTTManager.cs │ │ ├── GLES2RenderBuffer.cs │ │ ├── GLES2RenderSystem.cs │ │ ├── GLES2RenderTexture.cs │ │ ├── GLES2Support.cs │ │ ├── GLES2Texture.cs │ │ ├── GLES2TextureBuffer.cs │ │ ├── GLES2TextureManager.cs │ │ ├── GLES2VertexDeclaration.cs │ │ ├── GLESCgProgramFactory.cs │ │ ├── GLSLES │ │ │ ├── GLSLESCgProgram.cs │ │ │ ├── GLSLESCgProgramFactory.cs │ │ │ ├── GLSLESGpuProgram.cs │ │ │ ├── GLSLESLinkProgram.cs │ │ │ ├── GLSLESLinkProgramManager.cs │ │ │ ├── GLSLESPreprocessor.cs │ │ │ ├── GLSLESProgram.cs │ │ │ ├── GLSLESProgramCommon.cs │ │ │ ├── GLSLESProgramFactory.cs │ │ │ ├── GLSLESProgramManagerCommon.cs │ │ │ ├── GLSLESProgramPipeline.cs │ │ │ └── GLSLESProgramPipelineManager.cs │ │ ├── GLSLESLinkProgram.cs │ │ ├── GLSLESProgramPipeline.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── iOS │ │ │ ├── iOSContext.cs │ │ │ ├── iOSSupport.cs │ │ │ └── iOSWindow.cs │ ├── Axiom.RenderSystems.Xna.Content │ │ ├── Axiom.RenderSystems.Xna.Content.Phone.csproj │ │ ├── Axiom.RenderSystems.Xna.Content.Xbox.csproj │ │ ├── Axiom.RenderSystems.Xna.Content.x86.csproj │ │ ├── HlslCompiledShader.cs │ │ ├── HlslCompiledShaderReader.cs │ │ ├── HlslCompiledShaderWriter.cs │ │ ├── HlslImporter.cs │ │ ├── HlslIncludeHandler.cs │ │ ├── HlslProcessor.cs │ │ ├── Missing.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Axiom.SceneManagers.Bsp │ │ ├── Axiom.SceneManagers.Bsp.csproj │ │ ├── BspGeometry.cs │ │ ├── BspLevel.cs │ │ ├── BspNode.cs │ │ ├── BspPlugin.cs │ │ ├── BspResourceManager.cs │ │ ├── BspSceneManager.cs │ │ ├── BspSceneNode.cs │ │ ├── BspStaticFaceGroup.cs │ │ ├── Collections │ │ │ ├── Map.cs │ │ │ ├── MultiMap.cs │ │ │ └── ShaderPassCollection.cs │ │ ├── Quake3Level.cs │ │ ├── Quake3Shader.cs │ │ ├── Quake3ShaderManager.cs │ │ ├── SpotlightFrustum.cs │ │ └── TextureLight.cs │ ├── Axiom.SceneManagers.Octree │ │ ├── Axiom.SceneManagers.Octree.csproj │ │ ├── Enums.cs │ │ ├── Octree.cs │ │ ├── OctreeCamera.cs │ │ ├── OctreeNode.cs │ │ ├── OctreePlugin.cs │ │ ├── OctreeSceneManager.cs │ │ ├── TerrainRaySceneQuery.cs │ │ ├── TerrainRenderable.cs │ │ └── TerrainSceneManager.cs │ ├── Axiom.SceneManagers.PCZ.Zones.Octree │ │ ├── Axiom.Plugins.OctreeZone.csproj │ │ ├── ConfigFile.cs │ │ ├── HeightmapTerrainZonePageSource.cs │ │ ├── Octree.cs │ │ ├── OctreeZone.cs │ │ ├── OctreeZonePlugin.cs │ │ ├── TerrainVertexProgram.cs │ │ ├── TerrainZone.cs │ │ ├── TerrainZoneOptions.cs │ │ ├── TerrainZonePage.cs │ │ ├── TerrainZonePageSource.cs │ │ ├── TerrainZonePageSourceOptionList.cs │ │ └── TerrainZoneRenderable.cs │ ├── Axiom.SceneManagers.PCZ │ │ ├── Axiom.SceneManagers.PortalConnected.csproj │ │ ├── Capsule.cs │ │ ├── DefaultZone.cs │ │ ├── MovableObjectFactory.cs │ │ ├── PCPlane.cs │ │ ├── PCZCamera.cs │ │ ├── PCZFrustum.cs │ │ ├── PCZLight.cs │ │ ├── PCZPPlugin.cs │ │ ├── PCZSceneManager.cs │ │ ├── PCZSceneNode.cs │ │ ├── PCZSceneQuery.cs │ │ ├── PCZone.cs │ │ ├── PCZoneFactory.cs │ │ ├── Portal.cs │ │ ├── Segment.cs │ │ └── VisibleObjectsBoundsInfo.cs │ ├── Axiom │ │ ├── Animating │ │ │ ├── Animable.cs │ │ │ ├── Animation.cs │ │ │ ├── AnimationState.cs │ │ │ ├── AnimationStateSet.cs │ │ │ ├── AnimationTrack.cs │ │ │ ├── AttachmentPoint.cs │ │ │ ├── Bone.cs │ │ │ ├── Collections │ │ │ │ ├── AnimationCollection.cs │ │ │ │ ├── AnimationStateCollection.cs │ │ │ │ ├── AnimationTrackCollection.cs │ │ │ │ ├── BoneCollection.cs │ │ │ │ └── Lists.cs │ │ │ ├── Enums.cs │ │ │ ├── KeyFrame.cs │ │ │ ├── Pose.cs │ │ │ ├── Skeleton.cs │ │ │ ├── SkeletonInstance.cs │ │ │ ├── SkeletonManager.cs │ │ │ └── TagPoint.cs │ │ ├── AssemblyInfo.cs │ │ ├── Axiom.csproj │ │ ├── Collections │ │ │ ├── AxiomCollection.cs │ │ │ ├── BillboardSetCollection.cs │ │ │ ├── Deque.cs │ │ │ ├── HashList.cs │ │ │ ├── KeyFrameCollection.cs │ │ │ ├── Lists.cs │ │ │ ├── MeshCollection.cs │ │ │ ├── NameValuePairList.cs │ │ │ ├── NamedCollection.cs │ │ │ ├── NamedParameterList.cs │ │ │ ├── RadixSort.cs │ │ │ ├── ReadOnlyDictionary~2.cs │ │ │ ├── SortedList.cs │ │ │ ├── SubEntityCollection.cs │ │ │ ├── TextureLayerCollection.cs │ │ │ └── UnsortedCollection.cs │ │ ├── Configuration │ │ │ ├── Config.cs │ │ │ └── ConfigOption.cs │ │ ├── Controllers │ │ │ ├── BaseControllerFunction.cs │ │ │ ├── Canned │ │ │ │ ├── AnimationControllerFunction.cs │ │ │ │ ├── FloatGpuParamControllerValue.cs │ │ │ │ ├── MultiplyControllerFunction.cs │ │ │ │ ├── NodeRotationControllerValue.cs │ │ │ │ ├── PassthroughControllerFunction.cs │ │ │ │ ├── TexCoordModifierControllerValue.cs │ │ │ │ ├── TextureFrameControllerValue.cs │ │ │ │ └── WaveformControllerFunction.cs │ │ │ ├── Controller.cs │ │ │ ├── ControllerManager.cs │ │ │ ├── Enums.cs │ │ │ ├── FrameTimeControllerValue.cs │ │ │ ├── IControllerFunction.cs │ │ │ └── IControllerValue.cs │ │ ├── Core │ │ │ ├── AbstractFactory~1.cs │ │ │ ├── AtomicWrappers.cs │ │ │ ├── AxiomException.cs │ │ │ ├── Billboard.cs │ │ │ ├── BillboardChain.cs │ │ │ ├── BillboardSet.cs │ │ │ ├── BitConverterEx.cs │ │ │ ├── Camera.cs │ │ │ ├── ChainedEvent.cs │ │ │ ├── Collections │ │ │ │ ├── CameraCollection.cs │ │ │ │ ├── Lists.cs │ │ │ │ ├── MovableObjectCollection.cs │ │ │ │ ├── MultiMap.cs │ │ │ │ ├── NodeCollection.cs │ │ │ │ ├── SceneManagerCollection.cs │ │ │ │ ├── SceneNodeCollection.cs │ │ │ │ ├── SceneQueryMovableObjectIntersectionList.cs │ │ │ │ ├── SceneQueryMovableObjectWorldFragmentIntersectionList.cs │ │ │ │ └── ViewportCollection.cs │ │ │ ├── ColorEx.cs │ │ │ ├── CoreEnums.cs │ │ │ ├── DefaultShadowCameraSetup.cs │ │ │ ├── DisposableObject.cs │ │ │ ├── DistanceLodStrategy.cs │ │ │ ├── DynamicLoader.cs │ │ │ ├── Entity.cs │ │ │ ├── Enums.cs │ │ │ ├── Frustum.cs │ │ │ ├── IAbstractFactory~1.cs │ │ │ ├── ICopyable.cs │ │ │ ├── ILodListener.cs │ │ │ ├── INamable.cs │ │ │ ├── IPlatformManager.cs │ │ │ ├── IPlugin.cs │ │ │ ├── IShadowCameraSetup.cs │ │ │ ├── ITimer.cs │ │ │ ├── InstancedGeometry │ │ │ │ └── InstancedGeometry.cs │ │ │ ├── Light.cs │ │ │ ├── List~1Extensions.cs │ │ │ ├── LodStrategy.cs │ │ │ ├── LodStrategyManager.cs │ │ │ ├── Log.cs │ │ │ ├── LogManager.cs │ │ │ ├── ManualObject.cs │ │ │ ├── Memory.cs │ │ │ ├── Mesh.cs │ │ │ ├── MeshManager.cs │ │ │ ├── Meters.cs │ │ │ ├── MovableObject.cs │ │ │ ├── MovableText.cs │ │ │ ├── NameGenerator~1.cs │ │ │ ├── Node.cs │ │ │ ├── ObjectCreator.cs │ │ │ ├── ObjectExtensions.cs │ │ │ ├── ObjectManager.cs │ │ │ ├── ObjectTextDisplay.cs │ │ │ ├── Pair.cs │ │ │ ├── PatchMesh.cs │ │ │ ├── PatchSurface.cs │ │ │ ├── PixelCountStrategy.cs │ │ │ ├── PlatformInformation.cs │ │ │ ├── PlatformManager.cs │ │ │ ├── PluginException.cs │ │ │ ├── PluginManager.cs │ │ │ ├── PrefabFactory.cs │ │ │ ├── ProgressiveMesh.cs │ │ │ ├── Rectangle.cs │ │ │ ├── Resource.cs │ │ │ ├── ResourceGroupManager.cs │ │ │ ├── ResourceManager.cs │ │ │ ├── Root.cs │ │ │ ├── SceneManager.cs │ │ │ ├── SceneManagerEnumerator.cs │ │ │ ├── SceneNode.cs │ │ │ ├── SceneQuery.cs │ │ │ ├── ShadeOptions.cs │ │ │ ├── ShadowTextureManager.cs │ │ │ ├── Singleton.cs │ │ │ ├── SpecialCaseRenderQueue.cs │ │ │ ├── StaticGeometry │ │ │ │ ├── GeometryBucket.cs │ │ │ │ ├── LODBucket.cs │ │ │ │ ├── MaterialBucket.cs │ │ │ │ ├── Region.cs │ │ │ │ └── StaticGeometry.cs │ │ │ ├── StringConverter.cs │ │ │ ├── StringInterface.cs │ │ │ ├── SubEntity.cs │ │ │ ├── SubMesh.cs │ │ │ ├── Texture.cs │ │ │ ├── TextureManager.cs │ │ │ ├── Timer.cs │ │ │ ├── Viewport.cs │ │ │ ├── WindowEventMonitor.cs │ │ │ ├── WireBoundingBox.cs │ │ │ └── WorkQueue │ │ │ │ ├── DefaultWorkQueue.cs │ │ │ │ ├── DefaultWorkQueueBase.cs │ │ │ │ ├── RequestID.cs │ │ │ │ ├── ResourceBackgroundQueue.cs │ │ │ │ └── WorkQueue.cs │ │ ├── CrossPlatform │ │ │ ├── Buffer.cs │ │ │ └── ExtensionMethods.cs │ │ ├── EventHandler.cs │ │ ├── FileSystem │ │ │ ├── Archive.cs │ │ │ ├── ArchiveManager.cs │ │ │ ├── EmbeddedArchive.cs │ │ │ ├── FileSystemArchive.cs │ │ │ ├── IsolatedStorageArchive.cs │ │ │ ├── Watcher.cs │ │ │ ├── WebArchive.cs │ │ │ ├── XapArchive.cs │ │ │ └── ZipArchive.cs │ │ ├── Fonts │ │ │ ├── Font.cs │ │ │ ├── FontManager.cs │ │ │ └── FreetypeWrapper.cs │ │ ├── Graphics │ │ │ ├── AnyBuilder.cs │ │ │ ├── AutoParamDataSource.cs │ │ │ ├── BufferStream.cs │ │ │ ├── Collections │ │ │ │ ├── ConfigOptionCollection.cs │ │ │ │ ├── ConfigOptionMap.cs │ │ │ │ ├── Lists.cs │ │ │ │ ├── RenderPriorityGroupList.cs │ │ │ │ ├── RenderSystemCollection.cs │ │ │ │ ├── RenderTargetCollection.cs │ │ │ │ └── RenderWindowCollection.cs │ │ │ ├── CompositionPass.cs │ │ │ ├── CompositionTargetPass.cs │ │ │ ├── CompositionTechnique.cs │ │ │ ├── Compositor.cs │ │ │ ├── CompositorChain.cs │ │ │ ├── CompositorInstance.cs │ │ │ ├── CompositorManager.cs │ │ │ ├── CompositorScriptLoader.cs │ │ │ ├── DefaultHardwareBufferManager.cs │ │ │ ├── DefaultHardwareBufferManagerBase.cs │ │ │ ├── DefaultHardwareIndexBuffer.cs │ │ │ ├── DefaultHardwareVertexBuffer.cs │ │ │ ├── DepthBuffer.cs │ │ │ ├── DriverVersion.cs │ │ │ ├── EdgeData.cs │ │ │ ├── EdgeListBuilder.cs │ │ │ ├── Enums.cs │ │ │ ├── GpuProgram.cs │ │ │ ├── GpuProgramManager.cs │ │ │ ├── GpuProgramParameters.AutoConstantEntry.cs │ │ │ ├── GpuProgramParameters.AutoConstants.Update.cs │ │ │ ├── GpuProgramParameters.AutoConstants.cs │ │ │ ├── GpuProgramParameters.GpuConstantDefinition.cs │ │ │ ├── GpuProgramParameters.GpuConstantDefinitionMap.cs │ │ │ ├── GpuProgramParameters.GpuLogicalBufferStruct.cs │ │ │ ├── GpuProgramParameters.GpuLogicalIndexUse.cs │ │ │ ├── GpuProgramParameters.GpuNamedConstantSerializer.cs │ │ │ ├── GpuProgramParameters.GpuNamedConstants.cs │ │ │ ├── GpuProgramParameters.GpuSharedParameters.cs │ │ │ ├── GpuProgramParameters.GpuSharedParametersUsage.cs │ │ │ ├── GpuProgramParameters.Lists.cs │ │ │ ├── GpuProgramParameters.NamedConstants.cs │ │ │ ├── GpuProgramParameters.cs │ │ │ ├── GpuProgramUsage.cs │ │ │ ├── HardwareBuffer.cs │ │ │ ├── HardwareBufferManager.cs │ │ │ ├── HardwareBufferManagerBase.cs │ │ │ ├── HardwareCaps.cs │ │ │ ├── HardwareIndexBuffer.cs │ │ │ ├── HardwareOcclusionQuery.cs │ │ │ ├── HardwarePixelBuffer.cs │ │ │ ├── HardwareVertexBuffer.cs │ │ │ ├── HighLevelGpuProgram.cs │ │ │ ├── HighLevelGpuProgramManager.cs │ │ │ ├── ICompositorLogic.cs │ │ │ ├── ICustomCompositionPass.cs │ │ │ ├── IHardwareBufferLicensee.cs │ │ │ ├── IRenderable.cs │ │ │ ├── Material.cs │ │ │ ├── MaterialManager.cs │ │ │ ├── MovablePlane.cs │ │ │ ├── MultiRenderTarget.cs │ │ │ ├── NullProgram.cs │ │ │ ├── Pass.cs │ │ │ ├── QueuedRenderableCollection.cs │ │ │ ├── Rectangle2D.cs │ │ │ ├── RenderOperation.cs │ │ │ ├── RenderPriorityGroup.cs │ │ │ ├── RenderQueue.cs │ │ │ ├── RenderQueueGroup.cs │ │ │ ├── RenderQueueInvocation.cs │ │ │ ├── RenderQueueInvocationSequence.cs │ │ │ ├── RenderSystem.cs │ │ │ ├── RenderTarget.cs │ │ │ ├── RenderTexture.cs │ │ │ ├── RenderWindow.cs │ │ │ ├── RenderWindowDescription.cs │ │ │ ├── RibbonTrail.cs │ │ │ ├── ShadowCaster.cs │ │ │ ├── ShadowRenderable.cs │ │ │ ├── ShadowVolumeExtrudeProgram.cs │ │ │ ├── SimpleRenderable.cs │ │ │ ├── SoftwareBufferManager.cs │ │ │ ├── SpotShadowFadePng.cs │ │ │ ├── StaticFaceGroup.cs │ │ │ ├── Technique.cs │ │ │ ├── TempBlendedBufferInfo.cs │ │ │ ├── TextureUnitState.cs │ │ │ ├── TriangleBuilder.cs │ │ │ ├── UnifiedHighLevelGpuProgram.cs │ │ │ ├── VertexBufferBinding.cs │ │ │ ├── VertexBufferLicense.cs │ │ │ ├── VertexDeclaration.cs │ │ │ ├── VertexElement.cs │ │ │ └── VertexIndexData.cs │ │ ├── Input │ │ │ ├── Enums.cs │ │ │ ├── InputEventArgs.cs │ │ │ ├── InputReader.cs │ │ │ ├── KeyEventArgs.cs │ │ │ └── MouseEventArgs.cs │ │ ├── Math │ │ │ ├── AxisAlignedBox.cs │ │ │ ├── Collections │ │ │ │ ├── BaseCollection.cs │ │ │ │ ├── Lists.cs │ │ │ │ ├── Pair.cs │ │ │ │ ├── QuaternionCollection.cs │ │ │ │ └── Vector3Collection.cs │ │ │ ├── Degree.cs │ │ │ ├── Enums.cs │ │ │ ├── Matrix3.cs │ │ │ ├── Matrix4.cs │ │ │ ├── Plane.cs │ │ │ ├── PlaneBoundedVolume.cs │ │ │ ├── PositionalSpline.cs │ │ │ ├── Quaternion.cs │ │ │ ├── Radian.cs │ │ │ ├── Ray.cs │ │ │ ├── Real.cs │ │ │ ├── RotationalSpline.cs │ │ │ ├── Sphere.cs │ │ │ ├── Spline.cs │ │ │ ├── Tuple.cs │ │ │ ├── Utility.cs │ │ │ ├── Vector2.cs │ │ │ ├── Vector3.cs │ │ │ └── Vector4.cs │ │ ├── Media │ │ │ ├── Bitwise.cs │ │ │ ├── Codec.cs │ │ │ ├── CodecManager.cs │ │ │ ├── DDSCodec.cs │ │ │ ├── Enums.cs │ │ │ ├── Image.cs │ │ │ ├── ImageCodec.cs │ │ │ ├── LinearResampler.Byte.cs │ │ │ ├── LinearResampler.Float32.cs │ │ │ ├── LinearResampler.cs │ │ │ ├── NearestResampler.cs │ │ │ ├── NullCodec.cs │ │ │ ├── OptimizedPixelConversion.cs │ │ │ ├── PVRTCCodec.cs │ │ │ ├── PixelBox.cs │ │ │ ├── PixelConverter.cs │ │ │ └── PixelUtil.cs │ │ ├── NativeLibraryLoader.cs │ │ ├── OgreVersionAttribute.cs │ │ ├── Overlays │ │ │ ├── Elements │ │ │ │ ├── BorderPanel.cs │ │ │ │ ├── Factories.cs │ │ │ │ ├── Panel.cs │ │ │ │ └── TextArea.cs │ │ │ ├── Enums.cs │ │ │ ├── IOverlayElementFactory.cs │ │ │ ├── Overlay.cs │ │ │ ├── OverlayElement.cs │ │ │ ├── OverlayElementContainer.cs │ │ │ ├── OverlayElementManager.cs │ │ │ ├── OverlayManager.cs │ │ │ └── Overlays.cd │ │ ├── ParticleSystems │ │ │ ├── BillboardParticleRenderer.cs │ │ │ ├── Collections.cs │ │ │ ├── Collections │ │ │ │ └── Lists.cs │ │ │ ├── Particle.cs │ │ │ ├── ParticleAffector.cs │ │ │ ├── ParticleAffectorFactory.cs │ │ │ ├── ParticleEmitter.cs │ │ │ ├── ParticleEmitterFactory.cs │ │ │ ├── ParticleSystem.cs │ │ │ ├── ParticleSystemManager.cs │ │ │ ├── ParticleSystemRenderer.cs │ │ │ ├── ParticleSystemRendererFactory.cs │ │ │ └── ParticleVisualData.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripting │ │ │ ├── CommandAttribute.cs │ │ │ ├── Compiler │ │ │ │ ├── AST │ │ │ │ │ ├── AbstractNode.cs │ │ │ │ │ ├── AtomAbstractNode.cs │ │ │ │ │ ├── ImportAbstractNode.cs │ │ │ │ │ ├── ObjectAbstractNode.cs │ │ │ │ │ ├── PropertyAbstractNode.cs │ │ │ │ │ ├── VariableGetAbstractNode.cs │ │ │ │ │ └── VariableSetAbstractNode.cs │ │ │ │ ├── AbstractTreeBuilder.cs │ │ │ │ ├── CompileError.cs │ │ │ │ ├── ConcreteNode.cs │ │ │ │ ├── Generation │ │ │ │ │ ├── CompositionPassClearTranslator.cs │ │ │ │ │ ├── CompositionPassStencilTranslator.cs │ │ │ │ │ ├── CompositionPassTranslator.cs │ │ │ │ │ ├── CompositionTargetPassTranslator.cs │ │ │ │ │ ├── CompositionTechniqueTranslator.cs │ │ │ │ │ ├── CompositorTranslator.cs │ │ │ │ │ ├── GpuProgramSharedParametersTranslator.cs │ │ │ │ │ ├── GpuProgramTranslator.cs │ │ │ │ │ ├── MaterialTranslator.cs │ │ │ │ │ ├── ParticleAffectorTranslator.cs │ │ │ │ │ ├── ParticleEmitterTranslator.cs │ │ │ │ │ ├── ParticleSystemTranslator.cs │ │ │ │ │ ├── PassTranslator.cs │ │ │ │ │ ├── TechniqueTranslator.cs │ │ │ │ │ ├── TextureSourceTranslator.cs │ │ │ │ │ ├── TextureUnitTranslator.cs │ │ │ │ │ └── Translator.cs │ │ │ │ ├── Keywords.cs │ │ │ │ ├── Parser │ │ │ │ │ ├── ScriptLexer.cs │ │ │ │ │ ├── ScriptParser.cs │ │ │ │ │ ├── ScriptToken.cs │ │ │ │ │ └── Tokens.cs │ │ │ │ ├── ScriptCompiler.cs │ │ │ │ ├── ScriptCompilerListener.cs │ │ │ │ ├── ScriptCompilerManager.Events.cs │ │ │ │ └── ScriptCompilerManager.cs │ │ │ ├── ICommand.cs │ │ │ ├── IExecuteCommand.cs │ │ │ ├── IParser.cs │ │ │ ├── IPropertyCommand.cs │ │ │ ├── IScriptLoader.cs │ │ │ ├── ParseHelper.cs │ │ │ ├── ParserCommandAttribute.cs │ │ │ ├── ScriptEnumAttribute.cs │ │ │ └── ScriptableObject.cs │ │ ├── Serialization │ │ │ ├── Enums.cs │ │ │ ├── MaterialSerializer.cs │ │ │ ├── MeshSerializer.cs │ │ │ ├── MeshSerializerImpl.cs │ │ │ ├── OgreSkeletonReader.cs │ │ │ ├── Serializer.cs │ │ │ └── StreamSerializer.cs │ │ ├── Utilities │ │ │ ├── Contract.cs │ │ │ ├── Exceptions.cs │ │ │ ├── Proclaim.cs │ │ │ └── StringExtensions.cs │ │ ├── mono │ │ │ ├── Comparer.cs │ │ │ ├── ExpressionCompiler │ │ │ │ ├── Conversion.cs │ │ │ │ ├── ExpressionCompiler.cs │ │ │ │ ├── ExpressionCompiler.csproj │ │ │ │ ├── ExpressionHelper.cs │ │ │ │ ├── ExpressionInterpreter.cs │ │ │ │ ├── ExpressionValidator.cs │ │ │ │ ├── ExpressionVisitor.cs │ │ │ │ ├── Extensions.cs │ │ │ │ ├── Interpreter.cs │ │ │ │ └── Math.cs │ │ │ ├── HashSet.cs │ │ │ ├── Hashtable.cs │ │ │ ├── ICloneable.cs │ │ │ ├── Locale.cs │ │ │ ├── SortedList.cs │ │ │ ├── SortedList~2.cs │ │ │ ├── System.Collections.ArrayList.cs │ │ │ ├── System.Collections.Comparer.cs │ │ │ ├── System.Collections.Generic.SortedList.cs │ │ │ ├── System.Collections.Hashtable.cs │ │ │ ├── System.Collections.SortedList.cs │ │ │ ├── System.Collections.cs │ │ │ ├── System.Diagnostics.DefaultTraceListener.cs │ │ │ ├── System.Diagnostics.Stopwatch.cs │ │ │ ├── System.Diagnostics.Trace.cs │ │ │ ├── System.Diagnostics.TraceImpl.cs │ │ │ ├── System.Diagnostics.TraceListener.cs │ │ │ ├── System.Diagnostics.TraceListenerCollection.cs │ │ │ ├── System.Runtime.Serialization.cs │ │ │ ├── System.Security.cs │ │ │ └── System.cs │ │ └── runtimes │ │ │ ├── win-x64 │ │ │ └── native │ │ │ │ ├── freetype.dll │ │ │ │ └── freetype.lib │ │ │ └── win-x86 │ │ │ └── native │ │ │ ├── freetype.dll │ │ │ └── freetype.lib │ └── GlobalAssemblyInfo.cs ├── Framework │ ├── Axiom.Framework.WinForms │ │ ├── Axiom.Framework.WinForms.csproj │ │ ├── Configuration │ │ │ ├── WinFormConfigurationDialog.cs │ │ │ ├── WinFormConfigurationDialogFactory.cs │ │ │ └── WinFormConfigurationManager.cs │ │ ├── Exceptions │ │ │ └── WinFormErrorDialog.cs │ │ └── Resources │ │ │ ├── AxiomIcon.ico │ │ │ ├── Resource.Designer.cs │ │ │ ├── Resource.resx │ │ │ └── axiomlogo.png │ └── Axiom.Framework │ │ ├── Axiom.Framework.Droid.csproj │ │ ├── Axiom.Framework.csproj │ │ ├── Configuration │ │ ├── AxiomConfigurationSection.csd │ │ ├── AxiomConfigurationSection.csd.config │ │ ├── AxiomConfigurationSection.csd.cs │ │ ├── AxiomConfigurationSection.csd.diagram │ │ ├── AxiomConfigurationSection.csd.xsd │ │ ├── ConfigurationDialogFactory.cs │ │ ├── ConfigurationManagerBase.cs │ │ ├── ConfigurationManagerFactory.cs │ │ ├── DefaultConfigurationDialogFactory.cs │ │ ├── DefaultConfigurationManager.cs │ │ ├── DialogResult.cs │ │ ├── IConfigurationDialog.cs │ │ ├── IConfigurationDialogFactory.cs │ │ ├── IConfigurationManager.cs │ │ └── XBoxConfigurationManager.cs │ │ ├── Exceptions │ │ └── IErrorDialog.cs │ │ ├── Game.cs │ │ └── Graphics │ │ └── SpriteManager.cs ├── Samples │ ├── Axiom.Samples.BezierPatch │ │ ├── Axiom.Samples.BezierPatch.csproj │ │ ├── BezierPatch.cs │ │ └── Plugin.cs │ ├── Axiom.Samples.Browser.Android │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── Axiom.Samples.Browser.Droid.csproj │ │ ├── Content │ │ │ ├── Icons │ │ │ │ ├── AxiomIcon.ico │ │ │ │ └── files.manifest │ │ │ ├── Materials │ │ │ │ ├── Programs │ │ │ │ │ ├── ASCIIFP.cg │ │ │ │ │ ├── AmbientOneTexture.glsl │ │ │ │ │ ├── Bloom2_ps20.glsl │ │ │ │ │ ├── Bloom2_ps20.hlsl │ │ │ │ │ ├── Bloom_ps20.hlsl │ │ │ │ │ ├── Bloom_vs11.hlsl │ │ │ │ │ ├── Blur0_ps20.hlsl │ │ │ │ │ ├── Blur0_vs.glsl │ │ │ │ │ ├── Blur0_vs11.hlsl │ │ │ │ │ ├── Blur1_ps20.hlsl │ │ │ │ │ ├── Blur1_vs.glsl │ │ │ │ │ ├── Blur1_vs11.hlsl │ │ │ │ │ ├── BlurH_ps20.glsl │ │ │ │ │ ├── BlurH_ps20.hlsl │ │ │ │ │ ├── BlurV_ps20.glsl │ │ │ │ │ ├── BlurV_ps20.hlsl │ │ │ │ │ ├── Blur_ps.glsl │ │ │ │ │ ├── Blur_vs.glsl │ │ │ │ │ ├── Blur_vs11.hlsl │ │ │ │ │ ├── BrightBloom2_ps20.glsl │ │ │ │ │ ├── BrightBloom2_ps20.hlsl │ │ │ │ │ ├── Combine_fp.cg │ │ │ │ │ ├── Common.cg │ │ │ │ │ ├── DOF_ps.cg │ │ │ │ │ ├── DepthShadowmap.hlsl │ │ │ │ │ ├── DepthShadowmapCasterFp.glsl │ │ │ │ │ ├── DepthShadowmapCasterVp.glsl │ │ │ │ │ ├── DepthShadowmapNormalMapReceiverFp.glsl │ │ │ │ │ ├── DepthShadowmapNormalMapReceiverVp.glsl │ │ │ │ │ ├── DepthShadowmapReceiverFp.glsl │ │ │ │ │ ├── DepthShadowmapReceiverVp.glsl │ │ │ │ │ ├── DitherFP.cg │ │ │ │ │ ├── Example_Basic.cg │ │ │ │ │ ├── Example_Basic.hlsl │ │ │ │ │ ├── Example_BumpMapping.cg │ │ │ │ │ ├── Example_CelShading.cg │ │ │ │ │ ├── Example_Fresnel.cg │ │ │ │ │ ├── Example_FresnelPS.asm │ │ │ │ │ ├── Example_Projection.cg │ │ │ │ │ ├── GlassFP.cg │ │ │ │ │ ├── Grass.cg │ │ │ │ │ ├── GrayScale.cg │ │ │ │ │ ├── HalftoneFP.cg │ │ │ │ │ ├── HeatVision.cg │ │ │ │ │ ├── InvertFP.cg │ │ │ │ │ ├── LaplaceFP.cg │ │ │ │ │ ├── NightVisionFP.cg │ │ │ │ │ ├── Ocean2GLSL.frag │ │ │ │ │ ├── Ocean2GLSL.vert │ │ │ │ │ ├── Ocean2HLSL_Cg.frag │ │ │ │ │ ├── Ocean2HLSL_Cg.vert │ │ │ │ │ ├── OffsetMapping.cg │ │ │ │ │ ├── OffsetMapping.hlsl │ │ │ │ │ ├── OffsetMappingFp.glsl │ │ │ │ │ ├── OffsetMappingVp.glsl │ │ │ │ │ ├── OffsetMapping_specular.asm │ │ │ │ │ ├── OldMovieFP.cg │ │ │ │ │ ├── OldTV.cg │ │ │ │ │ ├── ParticleGS.cg │ │ │ │ │ ├── PassthroughVP.glsl │ │ │ │ │ ├── PosterizeFP.cg │ │ │ │ │ ├── Radial_Blur_FP.cg │ │ │ │ │ ├── Radial_Blur_FP.hlsl │ │ │ │ │ ├── SharpenEdgesFP.cg │ │ │ │ │ ├── StdQuad_vp.cg │ │ │ │ │ ├── StdQuad_vp.glsl │ │ │ │ │ ├── Swizzle.gp │ │ │ │ │ ├── SwizzleGP.cg │ │ │ │ │ ├── SwizzleGP.glsl │ │ │ │ │ ├── TilingFP.cg │ │ │ │ │ ├── crowdVp.glsl │ │ │ │ │ ├── depthshadowobject.cg │ │ │ │ │ ├── files.manifest │ │ │ │ │ ├── hdr.cg │ │ │ │ │ ├── hdr.hlsl │ │ │ │ │ ├── hdr_bloom.glsl │ │ │ │ │ ├── hdr_downscale2x2luminence.glsl │ │ │ │ │ ├── hdr_downscale3x3.glsl │ │ │ │ │ ├── hdr_downscale3x3brightpass.glsl │ │ │ │ │ ├── hdr_finalToneMapping.glsl │ │ │ │ │ ├── hdr_tonemap_util.glsl │ │ │ │ │ ├── hdrutils.hlsl │ │ │ │ │ ├── instancing.cg │ │ │ │ │ ├── instancingVp.glsl │ │ │ │ │ ├── isosurf.cg │ │ │ │ │ ├── mrttestfp.hlsl │ │ │ │ │ ├── mrttestfp_quad.glsl │ │ │ │ │ ├── mrttestfp_scene.glsl │ │ │ │ │ ├── oceanGLSL.frag │ │ │ │ │ ├── oceanGLSL.vert │ │ │ │ │ ├── oceanHLSL_Cg.frag │ │ │ │ │ ├── oceanHLSL_Cg.vert │ │ │ │ │ ├── pssm.cg │ │ │ │ │ ├── pssm.hlsl │ │ │ │ │ ├── shadows.cg │ │ │ │ │ ├── skinningTwoWeightsShadowCasterVp.glsl │ │ │ │ │ ├── skinningTwoWeightsVp.glsl │ │ │ │ │ ├── varianceshadowcasterfp.cg │ │ │ │ │ ├── varianceshadowcastervp.cg │ │ │ │ │ ├── varianceshadowreceiverfp.cg │ │ │ │ │ └── varianceshadowreceivervp.cg │ │ │ │ ├── Scripts │ │ │ │ │ ├── Aurora.material │ │ │ │ │ ├── BumpyMetal.material │ │ │ │ │ ├── CloudySkyBox.material │ │ │ │ │ ├── Droplet.material │ │ │ │ │ ├── EveningSkyBox.material │ │ │ │ │ ├── Examples-DynTex.material │ │ │ │ │ ├── Examples.program │ │ │ │ │ ├── Flair2.material │ │ │ │ │ ├── Flare.material │ │ │ │ │ ├── FlarePointSprite.material │ │ │ │ │ ├── MorningSkyBox.material │ │ │ │ │ ├── Ocean.controls │ │ │ │ │ ├── Ocean.material │ │ │ │ │ ├── OgreHead.material │ │ │ │ │ ├── Penguin.material │ │ │ │ │ ├── Rockwall.material │ │ │ │ │ ├── SphereMappedRustySteel.material │ │ │ │ │ ├── StormySkyBox.material │ │ │ │ │ ├── files.manifest │ │ │ │ │ └── smoke.material │ │ │ │ └── Textures │ │ │ │ │ ├── BumpyMetal.jpg │ │ │ │ │ ├── GreenSkin.jpg │ │ │ │ │ ├── NoiseVolume.dds │ │ │ │ │ ├── RustySteel.jpg │ │ │ │ │ ├── aureola.png │ │ │ │ │ ├── axiomlogo.png │ │ │ │ │ ├── basic_droplet.png │ │ │ │ │ ├── clouds.jpg │ │ │ │ │ ├── dirt_grayrocky_diffusespecular.dds │ │ │ │ │ ├── dirt_grayrocky_normalheight.dds │ │ │ │ │ ├── files.manifest │ │ │ │ │ ├── flare.png │ │ │ │ │ ├── flaretrail.png │ │ │ │ │ ├── frost.png │ │ │ │ │ ├── grass_green-01_diffusespecular.dds │ │ │ │ │ ├── grass_green-01_normalheight.dds │ │ │ │ │ ├── growth_weirdfungus-03_diffusespecular.dds │ │ │ │ │ ├── growth_weirdfungus-03_normalheight.dds │ │ │ │ │ ├── penguin.jpg │ │ │ │ │ ├── rockwall.tga │ │ │ │ │ ├── rockwall_NH.tga │ │ │ │ │ ├── smoke.png │ │ │ │ │ ├── smokecolors.png │ │ │ │ │ ├── spheremap.png │ │ │ │ │ ├── terrain.png │ │ │ │ │ ├── tusk.jpg │ │ │ │ │ └── waves2.dds │ │ │ ├── Models │ │ │ │ ├── files.manifest │ │ │ │ ├── ogrehead.mesh │ │ │ │ ├── penguin.mesh │ │ │ │ └── penguin.skeleton │ │ │ ├── Particles │ │ │ │ ├── Aureola.particle │ │ │ │ ├── Fireworks.particle │ │ │ │ ├── GreenyNimbus.particle │ │ │ │ ├── PurpleFountain.particle │ │ │ │ ├── Rain.particle │ │ │ │ ├── Snow.particle │ │ │ │ ├── files.manifest │ │ │ │ └── smoke.particle │ │ │ ├── SdkTrays │ │ │ │ ├── Fonts │ │ │ │ │ ├── Caption.png │ │ │ │ │ ├── SdkTrays.fontdef │ │ │ │ │ ├── Value.png │ │ │ │ │ └── files.manifest │ │ │ │ ├── Materials │ │ │ │ │ ├── Programs │ │ │ │ │ │ └── files.manifest │ │ │ │ │ ├── Scripts │ │ │ │ │ │ ├── SdkTrays.material │ │ │ │ │ │ └── files.manifest │ │ │ │ │ └── Textures │ │ │ │ │ │ ├── files.manifest │ │ │ │ │ │ ├── sdk_bands.png │ │ │ │ │ │ ├── sdk_button_down.png │ │ │ │ │ │ ├── sdk_button_over.png │ │ │ │ │ │ ├── sdk_button_up.png │ │ │ │ │ │ ├── sdk_cursor.png │ │ │ │ │ │ ├── sdk_frame.png │ │ │ │ │ │ ├── sdk_handle.png │ │ │ │ │ │ ├── sdk_label.png │ │ │ │ │ │ ├── sdk_logo.png │ │ │ │ │ │ ├── sdk_mini_text_box.png │ │ │ │ │ │ ├── sdk_mini_text_box_over.png │ │ │ │ │ │ ├── sdk_mini_tray.png │ │ │ │ │ │ ├── sdk_pulse.png │ │ │ │ │ │ ├── sdk_separator.png │ │ │ │ │ │ ├── sdk_shade.png │ │ │ │ │ │ ├── sdk_text_box.png │ │ │ │ │ │ ├── sdk_track.png │ │ │ │ │ │ └── sdk_tray.png │ │ │ │ └── Overlays │ │ │ │ │ ├── SdkTrays.overlay │ │ │ │ │ └── files.manifest │ │ │ └── Thumbnails │ │ │ │ ├── files.manifest │ │ │ │ ├── thumb_bezier.png │ │ │ │ ├── thumb_bsp.png │ │ │ │ ├── thumb_bump.png │ │ │ │ ├── thumb_camtrack.png │ │ │ │ ├── thumb_cel.png │ │ │ │ ├── thumb_char.png │ │ │ │ ├── thumb_comp.png │ │ │ │ ├── thumb_cubemap.png │ │ │ │ ├── thumb_deferred.png │ │ │ │ ├── thumb_dyntex.png │ │ │ │ ├── thumb_error.png │ │ │ │ ├── thumb_facial.png │ │ │ │ ├── thumb_fresnel.png │ │ │ │ ├── thumb_grass.png │ │ │ │ ├── thumb_instancing.png │ │ │ │ ├── thumb_isosurf.png │ │ │ │ ├── thumb_lighting.png │ │ │ │ ├── thumb_ocean.png │ │ │ │ ├── thumb_particlegs.png │ │ │ │ ├── thumb_particles.png │ │ │ │ ├── thumb_picking.png │ │ │ │ ├── thumb_playpen.png │ │ │ │ ├── thumb_shadersystem.png │ │ │ │ ├── thumb_shadows.png │ │ │ │ ├── thumb_skelanim.png │ │ │ │ ├── thumb_skybox.png │ │ │ │ ├── thumb_skydome.png │ │ │ │ ├── thumb_skyplane.png │ │ │ │ ├── thumb_smoke.png │ │ │ │ ├── thumb_spheremap.png │ │ │ │ ├── thumb_terrain.png │ │ │ │ ├── thumb_texfx.png │ │ │ │ ├── thumb_trans.png │ │ │ │ ├── thumb_triangle.png │ │ │ │ ├── thumb_voltex.png │ │ │ │ └── thumb_water.png │ │ ├── Main.Droid.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ ├── InBrowserSettings.xml │ │ │ ├── OutOfBrowserSettings.xml │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── AxiomIcon.ico │ │ │ ├── Background.png │ │ │ ├── Drawable │ │ │ │ └── GameThumbnail.png │ │ │ ├── GameThumbnail.png │ │ │ ├── Layout │ │ │ │ └── Main.axml │ │ │ ├── Resource.Designer.cs │ │ │ └── Values │ │ │ │ └── Strings.xml │ │ ├── SampleBrowser.Droid.cs │ │ ├── SampleBrowserHost.cs │ │ └── SampleBrowserView.cs │ ├── Axiom.Samples.Browser.Linux │ │ ├── App.config │ │ ├── Axiom.Samples.Browser.Linux.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ ├── AndroidManifest.xml │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ ├── InBrowserSettings.xml │ │ │ ├── OutOfBrowserSettings.xml │ │ │ └── WMAppManifest.xml │ ├── Axiom.Samples.Browser.Shared │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── Axiom.Samples.Browser.Droid.csproj │ │ ├── Axiom.Samples.Browser.Linux.csproj │ │ ├── Axiom.Samples.Browser.Shared.projitems │ │ ├── Axiom.Samples.Browser.Shared.shproj │ │ ├── Axiom.Samples.Browser.Win32.csproj │ │ ├── Content │ │ │ ├── Icons │ │ │ │ ├── AxiomIcon.ico │ │ │ │ └── files.manifest │ │ │ ├── Materials │ │ │ │ ├── Programs │ │ │ │ │ ├── ASCIIFP.cg │ │ │ │ │ ├── AmbientOneTexture.glsl │ │ │ │ │ ├── Bloom2_ps20.glsl │ │ │ │ │ ├── Bloom2_ps20.hlsl │ │ │ │ │ ├── Bloom_ps20.hlsl │ │ │ │ │ ├── Bloom_vs11.hlsl │ │ │ │ │ ├── Blur0_ps20.hlsl │ │ │ │ │ ├── Blur0_vs.glsl │ │ │ │ │ ├── Blur0_vs11.hlsl │ │ │ │ │ ├── Blur1_ps20.hlsl │ │ │ │ │ ├── Blur1_vs.glsl │ │ │ │ │ ├── Blur1_vs11.hlsl │ │ │ │ │ ├── BlurH_ps20.glsl │ │ │ │ │ ├── BlurH_ps20.hlsl │ │ │ │ │ ├── BlurV_ps20.glsl │ │ │ │ │ ├── BlurV_ps20.hlsl │ │ │ │ │ ├── Blur_ps.glsl │ │ │ │ │ ├── Blur_vs.glsl │ │ │ │ │ ├── Blur_vs11.hlsl │ │ │ │ │ ├── BrightBloom2_ps20.glsl │ │ │ │ │ ├── BrightBloom2_ps20.hlsl │ │ │ │ │ ├── Combine_fp.cg │ │ │ │ │ ├── Common.cg │ │ │ │ │ ├── DOF_ps.cg │ │ │ │ │ ├── DepthShadowmap.hlsl │ │ │ │ │ ├── DepthShadowmapCasterFp.glsl │ │ │ │ │ ├── DepthShadowmapCasterVp.glsl │ │ │ │ │ ├── DepthShadowmapNormalMapReceiverFp.glsl │ │ │ │ │ ├── DepthShadowmapNormalMapReceiverVp.glsl │ │ │ │ │ ├── DepthShadowmapReceiverFp.glsl │ │ │ │ │ ├── DepthShadowmapReceiverVp.glsl │ │ │ │ │ ├── DitherFP.cg │ │ │ │ │ ├── Example_Basic.cg │ │ │ │ │ ├── Example_Basic.hlsl │ │ │ │ │ ├── Example_BumpMapping.cg │ │ │ │ │ ├── Example_CelShading.cg │ │ │ │ │ ├── Example_Fresnel.cg │ │ │ │ │ ├── Example_FresnelPS.asm │ │ │ │ │ ├── Example_Projection.cg │ │ │ │ │ ├── GlassFP.cg │ │ │ │ │ ├── Grass.cg │ │ │ │ │ ├── GrayScale.cg │ │ │ │ │ ├── HalftoneFP.cg │ │ │ │ │ ├── HeatVision.cg │ │ │ │ │ ├── InvertFP.cg │ │ │ │ │ ├── LaplaceFP.cg │ │ │ │ │ ├── NightVisionFP.cg │ │ │ │ │ ├── Ocean2GLSL.frag │ │ │ │ │ ├── Ocean2GLSL.vert │ │ │ │ │ ├── Ocean2HLSL_Cg.frag │ │ │ │ │ ├── Ocean2HLSL_Cg.vert │ │ │ │ │ ├── OffsetMapping.cg │ │ │ │ │ ├── OffsetMapping.hlsl │ │ │ │ │ ├── OffsetMappingFp.glsl │ │ │ │ │ ├── OffsetMappingVp.glsl │ │ │ │ │ ├── OffsetMapping_specular.asm │ │ │ │ │ ├── OldMovieFP.cg │ │ │ │ │ ├── OldTV.cg │ │ │ │ │ ├── ParticleGS.cg │ │ │ │ │ ├── PassthroughVP.glsl │ │ │ │ │ ├── PosterizeFP.cg │ │ │ │ │ ├── Radial_Blur_FP.cg │ │ │ │ │ ├── Radial_Blur_FP.hlsl │ │ │ │ │ ├── SharpenEdgesFP.cg │ │ │ │ │ ├── StdQuad_vp.cg │ │ │ │ │ ├── StdQuad_vp.glsl │ │ │ │ │ ├── Swizzle.gp │ │ │ │ │ ├── SwizzleGP.cg │ │ │ │ │ ├── SwizzleGP.glsl │ │ │ │ │ ├── TilingFP.cg │ │ │ │ │ ├── crowdVp.glsl │ │ │ │ │ ├── depthshadowobject.cg │ │ │ │ │ ├── files.manifest │ │ │ │ │ ├── hdr.cg │ │ │ │ │ ├── hdr.hlsl │ │ │ │ │ ├── hdr_bloom.glsl │ │ │ │ │ ├── hdr_downscale2x2luminence.glsl │ │ │ │ │ ├── hdr_downscale3x3.glsl │ │ │ │ │ ├── hdr_downscale3x3brightpass.glsl │ │ │ │ │ ├── hdr_finalToneMapping.glsl │ │ │ │ │ ├── hdr_tonemap_util.glsl │ │ │ │ │ ├── hdrutils.hlsl │ │ │ │ │ ├── instancing.cg │ │ │ │ │ ├── instancingVp.glsl │ │ │ │ │ ├── isosurf.cg │ │ │ │ │ ├── mrttestfp.hlsl │ │ │ │ │ ├── mrttestfp_quad.glsl │ │ │ │ │ ├── mrttestfp_scene.glsl │ │ │ │ │ ├── oceanGLSL.frag │ │ │ │ │ ├── oceanGLSL.vert │ │ │ │ │ ├── oceanHLSL_Cg.frag │ │ │ │ │ ├── oceanHLSL_Cg.vert │ │ │ │ │ ├── pssm.cg │ │ │ │ │ ├── pssm.hlsl │ │ │ │ │ ├── shadows.cg │ │ │ │ │ ├── skinningTwoWeightsShadowCasterVp.glsl │ │ │ │ │ ├── skinningTwoWeightsVp.glsl │ │ │ │ │ ├── varianceshadowcasterfp.cg │ │ │ │ │ ├── varianceshadowcastervp.cg │ │ │ │ │ ├── varianceshadowreceiverfp.cg │ │ │ │ │ └── varianceshadowreceivervp.cg │ │ │ │ ├── Scripts │ │ │ │ │ ├── Aurora.material │ │ │ │ │ ├── BumpyMetal.material │ │ │ │ │ ├── CloudySkyBox.material │ │ │ │ │ ├── Droplet.material │ │ │ │ │ ├── EveningSkyBox.material │ │ │ │ │ ├── Examples-DynTex.material │ │ │ │ │ ├── Examples.program │ │ │ │ │ ├── Flair2.material │ │ │ │ │ ├── Flare.material │ │ │ │ │ ├── FlarePointSprite.material │ │ │ │ │ ├── MorningSkyBox.material │ │ │ │ │ ├── Ocean.controls │ │ │ │ │ ├── Ocean.material │ │ │ │ │ ├── OgreHead.material │ │ │ │ │ ├── Penguin.material │ │ │ │ │ ├── Rockwall.material │ │ │ │ │ ├── SphereMappedRustySteel.material │ │ │ │ │ ├── StormySkyBox.material │ │ │ │ │ ├── files.manifest │ │ │ │ │ └── smoke.material │ │ │ │ └── Textures │ │ │ │ │ ├── BumpyMetal.jpg │ │ │ │ │ ├── GreenSkin.jpg │ │ │ │ │ ├── NoiseVolume.dds │ │ │ │ │ ├── RustySteel.jpg │ │ │ │ │ ├── aureola.png │ │ │ │ │ ├── axiomlogo.png │ │ │ │ │ ├── basic_droplet.png │ │ │ │ │ ├── clouds.jpg │ │ │ │ │ ├── dirt_grayrocky_diffusespecular.dds │ │ │ │ │ ├── dirt_grayrocky_normalheight.dds │ │ │ │ │ ├── files.manifest │ │ │ │ │ ├── flare.png │ │ │ │ │ ├── flaretrail.png │ │ │ │ │ ├── frost.png │ │ │ │ │ ├── grass_green-01_diffusespecular.dds │ │ │ │ │ ├── grass_green-01_normalheight.dds │ │ │ │ │ ├── growth_weirdfungus-03_diffusespecular.dds │ │ │ │ │ ├── growth_weirdfungus-03_normalheight.dds │ │ │ │ │ ├── penguin.jpg │ │ │ │ │ ├── rockwall.tga │ │ │ │ │ ├── rockwall_NH.tga │ │ │ │ │ ├── smoke.png │ │ │ │ │ ├── smokecolors.png │ │ │ │ │ ├── spheremap.png │ │ │ │ │ ├── terrain.png │ │ │ │ │ ├── tusk.jpg │ │ │ │ │ └── waves2.dds │ │ │ ├── Models │ │ │ │ ├── files.manifest │ │ │ │ ├── ogrehead.mesh │ │ │ │ ├── penguin.mesh │ │ │ │ └── penguin.skeleton │ │ │ ├── Particles │ │ │ │ ├── Aureola.particle │ │ │ │ ├── Fireworks.particle │ │ │ │ ├── GreenyNimbus.particle │ │ │ │ ├── PurpleFountain.particle │ │ │ │ ├── Rain.particle │ │ │ │ ├── Snow.particle │ │ │ │ ├── files.manifest │ │ │ │ └── smoke.particle │ │ │ ├── SdkTrays │ │ │ │ ├── Fonts │ │ │ │ │ ├── Caption.png │ │ │ │ │ ├── SdkTrays.fontdef │ │ │ │ │ ├── Value.png │ │ │ │ │ └── files.manifest │ │ │ │ ├── Materials │ │ │ │ │ ├── Programs │ │ │ │ │ │ └── files.manifest │ │ │ │ │ ├── Scripts │ │ │ │ │ │ ├── SdkTrays.material │ │ │ │ │ │ └── files.manifest │ │ │ │ │ └── Textures │ │ │ │ │ │ ├── files.manifest │ │ │ │ │ │ ├── sdk_bands.png │ │ │ │ │ │ ├── sdk_button_down.png │ │ │ │ │ │ ├── sdk_button_over.png │ │ │ │ │ │ ├── sdk_button_up.png │ │ │ │ │ │ ├── sdk_cursor.png │ │ │ │ │ │ ├── sdk_frame.png │ │ │ │ │ │ ├── sdk_handle.png │ │ │ │ │ │ ├── sdk_label.png │ │ │ │ │ │ ├── sdk_logo.png │ │ │ │ │ │ ├── sdk_mini_text_box.png │ │ │ │ │ │ ├── sdk_mini_text_box_over.png │ │ │ │ │ │ ├── sdk_mini_tray.png │ │ │ │ │ │ ├── sdk_pulse.png │ │ │ │ │ │ ├── sdk_separator.png │ │ │ │ │ │ ├── sdk_shade.png │ │ │ │ │ │ ├── sdk_text_box.png │ │ │ │ │ │ ├── sdk_track.png │ │ │ │ │ │ └── sdk_tray.png │ │ │ │ └── Overlays │ │ │ │ │ ├── SdkTrays.overlay │ │ │ │ │ └── files.manifest │ │ │ └── Thumbnails │ │ │ │ ├── files.manifest │ │ │ │ ├── thumb_bezier.png │ │ │ │ ├── thumb_bsp.png │ │ │ │ ├── thumb_bump.png │ │ │ │ ├── thumb_camtrack.png │ │ │ │ ├── thumb_cel.png │ │ │ │ ├── thumb_char.png │ │ │ │ ├── thumb_comp.png │ │ │ │ ├── thumb_cubemap.png │ │ │ │ ├── thumb_deferred.png │ │ │ │ ├── thumb_dyntex.png │ │ │ │ ├── thumb_error.png │ │ │ │ ├── thumb_facial.png │ │ │ │ ├── thumb_fresnel.png │ │ │ │ ├── thumb_grass.png │ │ │ │ ├── thumb_instancing.png │ │ │ │ ├── thumb_isosurf.png │ │ │ │ ├── thumb_lighting.png │ │ │ │ ├── thumb_ocean.png │ │ │ │ ├── thumb_particlegs.png │ │ │ │ ├── thumb_particles.png │ │ │ │ ├── thumb_picking.png │ │ │ │ ├── thumb_playpen.png │ │ │ │ ├── thumb_shadersystem.png │ │ │ │ ├── thumb_shadows.png │ │ │ │ ├── thumb_skelanim.png │ │ │ │ ├── thumb_skybox.png │ │ │ │ ├── thumb_skydome.png │ │ │ │ ├── thumb_skyplane.png │ │ │ │ ├── thumb_smoke.png │ │ │ │ ├── thumb_spheremap.png │ │ │ │ ├── thumb_terrain.png │ │ │ │ ├── thumb_texfx.png │ │ │ │ ├── thumb_trans.png │ │ │ │ ├── thumb_triangle.png │ │ │ │ ├── thumb_voltex.png │ │ │ │ └── thumb_water.png │ │ ├── Main.Droid.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ ├── InBrowserSettings.xml │ │ │ ├── OutOfBrowserSettings.xml │ │ │ └── WMAppManifest.xml │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── AxiomIcon.ico │ │ │ ├── Background.png │ │ │ ├── Drawable │ │ │ │ └── GameThumbnail.png │ │ │ ├── GameThumbnail.png │ │ │ ├── Layout │ │ │ │ └── Main.axml │ │ │ ├── Resource.Designer.cs │ │ │ └── Values │ │ │ │ └── Strings.xml │ │ ├── SampleBrowser.Droid.cs │ │ ├── SampleBrowser.cs │ │ ├── SampleBrowserHost.cs │ │ ├── SampleBrowserView.cs │ │ └── host.html │ ├── Axiom.Samples.Browser.Win32 │ │ ├── App.config │ │ ├── Axiom.Samples.Browser.Win32.csproj │ │ ├── Program.cs │ │ └── Resources │ │ │ ├── AxiomIcon.ico │ │ │ └── axiomlogo.png │ ├── Axiom.Samples.Bsp │ │ ├── Axiom.Samples.Bsp.csproj │ │ ├── BSPSample.cs │ │ └── Plugin.cs │ ├── Axiom.Samples.CameraTracking │ │ ├── Axiom.Samples.CameraTracking.csproj │ │ ├── CameraTrackingSample.cs │ │ └── Plugin.cs │ ├── Axiom.Samples.Character │ │ ├── Axiom.Samples.CharacterSample.csproj │ │ ├── CharacterSample.cs │ │ ├── Plugin.cs │ │ └── SinbadCharacterController.cs │ ├── Axiom.Samples.Common │ │ ├── Axiom.Samples.Common.csproj │ │ ├── Sample.cs │ │ ├── SampleContext.cs │ │ ├── SamplePlugin.cs │ │ ├── SdkCameraManager.cs │ │ ├── SdkSample.cs │ │ └── Tray │ │ │ ├── Button.cs │ │ │ ├── CheckBox.cs │ │ │ ├── DecorWidget.cs │ │ │ ├── ISdkTrayListener.cs │ │ │ ├── Label.cs │ │ │ ├── LogoWidget.cs │ │ │ ├── ParamsPanel.cs │ │ │ ├── ProgressBar.cs │ │ │ ├── SdkTrays.cs │ │ │ ├── SelectMenu.cs │ │ │ ├── Separator.cs │ │ │ ├── Slider.cs │ │ │ ├── TextBox.cs │ │ │ ├── Widget.cs │ │ │ └── WidgetEventArgs.cs │ ├── Axiom.Samples.DynamicTexture │ │ ├── Axiom.Samples.DynamicTexture.csproj │ │ ├── DynamicTexture.cs │ │ └── Plugin.cs │ ├── Axiom.Samples.Instancing │ │ ├── Axiom.Samples.Instancing.csproj │ │ ├── InstancingSample.cs │ │ └── Plugin.cs │ ├── Axiom.Samples.MousePicking │ │ ├── Axiom.Samples.MousePicking.csproj │ │ ├── Axiom.Samples.MousePicking.pidb │ │ ├── MousePickingSample.cs │ │ ├── MouseSelector.cs │ │ ├── Plugin.cs │ │ └── SelectionRectangle.cs │ ├── Axiom.Samples.Ocean │ │ ├── Axiom.Samples.Ocean.csproj │ │ ├── MaterialControls.cs │ │ ├── OceanSample.cs │ │ ├── Plugin.cs │ │ └── ShaderControl.cs │ ├── Axiom.Samples.ParticleFX │ │ ├── Axiom.Samples.ParticleFX.csproj │ │ ├── ParticleFXSample.cs │ │ └── Plugin.cs │ ├── Axiom.Samples.Primitives │ │ ├── Axiom.Samples.Primitives.csproj │ │ ├── Plugin.cs │ │ └── PrimitiveSample.cs │ ├── Axiom.Samples.ShaderSystem │ │ ├── Axiom.Samples.ShaderSystem.csproj │ │ ├── InstancedViewports.cs │ │ ├── Plugin.cs │ │ ├── ReflectionMap.cs │ │ └── ShaderSample.cs │ ├── Axiom.Samples.Smoke │ │ ├── Axiom.Samples.Smoke.csproj │ │ ├── Plugin.cs │ │ └── SmokeSample.cs │ ├── Axiom.Samples.SphereMapping │ │ ├── Axiom.Samples.SphereMapping.csproj │ │ ├── Plugin.cs │ │ └── SphereMappingSample.cs │ ├── Axiom.Samples.Terrain │ │ ├── Axiom.Samples.Terrain.csproj │ │ ├── Plugin.cs │ │ └── TerrainSample.cs │ ├── Axiom.Samples.VolumeTexture │ │ ├── Axiom.Samples.VolumeTexture.csproj │ │ ├── Julia.cs │ │ ├── Plugin.cs │ │ ├── ThingRendable.cs │ │ ├── VolumeRendable.cs │ │ └── VolumeTextureSample.cs │ └── media │ │ ├── Axiom.Samples.Media.csproj │ │ └── media │ │ ├── Archives │ │ ├── AxiomCore.zip │ │ ├── SdkTrays.zip │ │ ├── Sinbad.zip │ │ ├── chiropteraDM.pk3 │ │ ├── chiropteraDM.txt │ │ ├── chiropteraDM.zip │ │ ├── cubemap.zip │ │ ├── cubemapsJS.zip │ │ ├── ogretestmap.zip │ │ └── skybox.zip │ │ ├── Icons │ │ └── AxiomIcon.ico │ │ ├── Materials │ │ ├── Aurora.material │ │ ├── BumpyMetal.material │ │ ├── CloudyNoonSkyBox.material │ │ ├── CloudySkyBox.material │ │ ├── Droplet.material │ │ ├── EveningSkyBox.material │ │ ├── Examples-DynTex.material │ │ ├── Examples.program │ │ ├── Flair2.material │ │ ├── Flare.material │ │ ├── FlarePointSprite.material │ │ ├── MorningSkyBox.material │ │ ├── Ocean.controls │ │ ├── Ocean.material │ │ ├── OgreHead.material │ │ ├── Penguin.material │ │ ├── Rockwall.material │ │ ├── SceneCubeMap2.material │ │ ├── SphereMappedRustySteel.material │ │ ├── StormySkyBox.material │ │ ├── TudorHouse.material │ │ └── smoke.material │ │ ├── Meshes │ │ ├── ogrehead.mesh │ │ ├── penguin.mesh │ │ ├── penguin.skeleton │ │ ├── sphere.mesh │ │ └── tudorhouse.mesh │ │ ├── Particles │ │ ├── Aureola.particle │ │ ├── Fireworks.particle │ │ ├── GreenyNimbus.particle │ │ ├── PurpleFountain.particle │ │ ├── Rain.particle │ │ ├── Snow.particle │ │ └── smoke.particle │ │ ├── Programs │ │ ├── ASCIIFP.cg │ │ ├── AmbientOneTexture.glsl │ │ ├── Bloom2_ps20.glsl │ │ ├── Bloom2_ps20.hlsl │ │ ├── Bloom_ps20.hlsl │ │ ├── Bloom_vs11.hlsl │ │ ├── Blur0_ps20.hlsl │ │ ├── Blur0_vs.glsl │ │ ├── Blur0_vs11.hlsl │ │ ├── Blur1_ps20.hlsl │ │ ├── Blur1_vs.glsl │ │ ├── Blur1_vs11.hlsl │ │ ├── BlurH_ps20.glsl │ │ ├── BlurH_ps20.hlsl │ │ ├── BlurV_ps20.glsl │ │ ├── BlurV_ps20.hlsl │ │ ├── Blur_ps.glsl │ │ ├── Blur_vs.glsl │ │ ├── Blur_vs11.hlsl │ │ ├── BrightBloom2_ps20.glsl │ │ ├── BrightBloom2_ps20.hlsl │ │ ├── Combine_fp.cg │ │ ├── Common.cg │ │ ├── DOF_ps.cg │ │ ├── DepthShadowmap.hlsl │ │ ├── DepthShadowmapCasterFp.glsl │ │ ├── DepthShadowmapCasterVp.glsl │ │ ├── DepthShadowmapNormalMapReceiverFp.glsl │ │ ├── DepthShadowmapNormalMapReceiverVp.glsl │ │ ├── DepthShadowmapReceiverFp.glsl │ │ ├── DepthShadowmapReceiverVp.glsl │ │ ├── DitherFP.cg │ │ ├── Example_Basic.cg │ │ ├── Example_Basic.hlsl │ │ ├── Example_BumpMapping.cg │ │ ├── Example_CelShading.cg │ │ ├── Example_Fresnel.cg │ │ ├── Example_FresnelPS.asm │ │ ├── Example_Projection.cg │ │ ├── GlassFP.cg │ │ ├── Grass.cg │ │ ├── GrayScale.cg │ │ ├── HalftoneFP.cg │ │ ├── HeatVision.cg │ │ ├── InvertFP.cg │ │ ├── LaplaceFP.cg │ │ ├── NightVisionFP.cg │ │ ├── Ocean2GLSL.frag │ │ ├── Ocean2GLSL.vert │ │ ├── Ocean2HLSL_Cg.frag │ │ ├── Ocean2HLSL_Cg.vert │ │ ├── OffsetMapping.cg │ │ ├── OffsetMapping.hlsl │ │ ├── OffsetMappingFp.glsl │ │ ├── OffsetMappingVp.glsl │ │ ├── OffsetMapping_specular.asm │ │ ├── OldMovieFP.cg │ │ ├── OldTV.cg │ │ ├── ParticleGS.cg │ │ ├── PassthroughVP.glsl │ │ ├── PosterizeFP.cg │ │ ├── Radial_Blur_FP.cg │ │ ├── Radial_Blur_FP.hlsl │ │ ├── SharpenEdgesFP.cg │ │ ├── StdQuad_vp.cg │ │ ├── StdQuad_vp.glsl │ │ ├── Swizzle.gp │ │ ├── SwizzleGP.cg │ │ ├── SwizzleGP.glsl │ │ ├── TilingFP.cg │ │ ├── crowdVp.glsl │ │ ├── depthshadowobject.cg │ │ ├── hdr.cg │ │ ├── hdr.hlsl │ │ ├── hdr_bloom.glsl │ │ ├── hdr_downscale2x2luminence.glsl │ │ ├── hdr_downscale3x3.glsl │ │ ├── hdr_downscale3x3brightpass.glsl │ │ ├── hdr_finalToneMapping.glsl │ │ ├── hdr_tonemap_util.glsl │ │ ├── hdrutils.hlsl │ │ ├── instancing.cg │ │ ├── instancingVp.glsl │ │ ├── isosurf.cg │ │ ├── mrttestfp.hlsl │ │ ├── mrttestfp_quad.glsl │ │ ├── mrttestfp_scene.glsl │ │ ├── oceanGLSL.frag │ │ ├── oceanGLSL.vert │ │ ├── oceanHLSL_Cg.frag │ │ ├── oceanHLSL_Cg.vert │ │ ├── pssm.cg │ │ ├── pssm.hlsl │ │ ├── shadows.cg │ │ ├── skinningTwoWeightsShadowCasterVp.glsl │ │ ├── skinningTwoWeightsVp.glsl │ │ ├── varianceshadowcasterfp.cg │ │ ├── varianceshadowcastervp.cg │ │ ├── varianceshadowreceiverfp.cg │ │ └── varianceshadowreceivervp.cg │ │ ├── Textures │ │ ├── BumpyMetal.jpg │ │ ├── GreenSkin.jpg │ │ ├── NoiseVolume.dds │ │ ├── RustySteel.jpg │ │ ├── aureola.png │ │ ├── axiomlogo.png │ │ ├── basic_droplet.png │ │ ├── clouds.jpg │ │ ├── dirt_grayrocky_diffusespecular.dds │ │ ├── dirt_grayrocky_normalheight.dds │ │ ├── flare.png │ │ ├── flaretrail.png │ │ ├── frost.png │ │ ├── fw12b.jpg │ │ ├── grass_green-01_diffusespecular.dds │ │ ├── grass_green-01_normalheight.dds │ │ ├── growth_weirdfungus-03_diffusespecular.dds │ │ ├── growth_weirdfungus-03_normalheight.dds │ │ ├── penguin.jpg │ │ ├── rockwall.tga │ │ ├── rockwall_NH.tga │ │ ├── smoke.png │ │ ├── smokecolors.png │ │ ├── spheremap.png │ │ ├── terrain.png │ │ ├── tusk.jpg │ │ └── waves2.dds │ │ └── Thumbnails │ │ ├── thumb_bezier.png │ │ ├── thumb_bsp.png │ │ ├── thumb_bump.png │ │ ├── thumb_camtrack.png │ │ ├── thumb_cel.png │ │ ├── thumb_char.png │ │ ├── thumb_comp.png │ │ ├── thumb_cubemap.png │ │ ├── thumb_deferred.png │ │ ├── thumb_dyntex.png │ │ ├── thumb_error.png │ │ ├── thumb_facial.png │ │ ├── thumb_fresnel.png │ │ ├── thumb_grass.png │ │ ├── thumb_instancing.png │ │ ├── thumb_isosurf.png │ │ ├── thumb_lighting.png │ │ ├── thumb_ocean.png │ │ ├── thumb_particlegs.png │ │ ├── thumb_particles.png │ │ ├── thumb_picking.png │ │ ├── thumb_playpen.png │ │ ├── thumb_shadersystem.png │ │ ├── thumb_shadows.png │ │ ├── thumb_skelanim.png │ │ ├── thumb_skybox.png │ │ ├── thumb_skydome.png │ │ ├── thumb_skyplane.png │ │ ├── thumb_smoke.png │ │ ├── thumb_spheremap.png │ │ ├── thumb_terrain.png │ │ ├── thumb_texfx.png │ │ ├── thumb_trans.png │ │ ├── thumb_triangle.png │ │ ├── thumb_voltex.png │ │ └── thumb_water.png ├── Tests │ ├── Axiom.Tests.Integration │ │ ├── Axiom.Tests.Integration.csproj │ │ ├── IntegrationFixtureBase.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── Axiom.Tests.Unit │ │ ├── Axiom.Tests.Unit.csproj │ │ ├── Collections │ │ ├── AddRemoveMovableObjectRegressionTests.cs │ │ ├── NamedCollectionRegressionTests.cs │ │ └── RenameMovableObjectRegressionTests.cs │ │ ├── Core │ │ ├── ChainedEventTests.cs │ │ ├── LodStrategyTests.cs │ │ ├── ResourceGroupManager.ManualResourceCreation.Test.cs │ │ ├── SceneManagerRegressionTests.cs │ │ ├── SceneNodeRegressionTests.cs │ │ └── SceneNodeTests.cs │ │ ├── EngineConfig.xml │ │ ├── Fonts │ │ └── FontManagerRegressionTests.cs │ │ ├── Graphics │ │ └── GpuProgramParametersTestFixture.cs │ │ ├── Math │ │ └── AxisAlignedBoxTest.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SceneManagers │ │ ├── Bsp │ │ │ ├── BspSceneManagerRegressionTests.cs │ │ │ ├── BspSceneNodeRegressionTests.cs │ │ │ └── BspSceneNodeTests.cs │ │ ├── Octree │ │ │ ├── OctreeNodeRegressionTests.cs │ │ │ ├── OctreeNodeTests.cs │ │ │ └── OctreeSceneManagerRegressionTests.cs │ │ └── PortalConnected │ │ │ ├── PCZSceneManagerRegressionTests.cs │ │ │ ├── PCZSceneNodeRegressionTests.cs │ │ │ └── PCZSceneNodeTests.cs │ │ └── Serialization │ │ ├── BitConverterExtensionTests.cs │ │ └── StreamSerializerTests.cs └── global.json ├── license.txt └── readme.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /Credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Credits.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/DevIL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/DevIL.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/ILU.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/ILU.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/ILUT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/ILUT.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/OpenAL32.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/SDL.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/SDL_gfx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/SDL_gfx.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/SDL_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/SDL_image.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/SDL_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/SDL_mixer.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/SDL_net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/SDL_net.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/SDL_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/SDL_ttf.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Cg.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Cg.License.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Cg.Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Cg.Readme.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Cg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Cg.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Cg.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Cg.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Cg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Cg.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.DevIl.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.DevIl.License.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.DevIl.Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.DevIl.Readme.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.DevIl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.DevIl.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.DevIl.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.DevIl.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.DevIl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.DevIl.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FFmpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FFmpeg.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FFmpeg.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FFmpeg.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FFmpeg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FFmpeg.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FreeGlut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FreeGlut.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FreeGlut.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FreeGlut.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FreeGlut.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FreeGlut.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FreeType.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FreeType.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FreeType.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FreeType.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.FreeType.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.FreeType.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Glfw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Glfw.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Glfw.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Glfw.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Glfw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Glfw.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Lua.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Lua.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Lua.dll.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Lua.dll.build -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Lua.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Lua.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Ode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Ode.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Ode.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Ode.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Ode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Ode.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.OpenAl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.OpenAl.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.OpenAl.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.OpenAl.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.OpenAl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.OpenAl.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.OpenGl.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.OpenGl.License.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.OpenGl.Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.OpenGl.Readme.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.OpenGl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.OpenGl.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.OpenGl.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.OpenGl.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.OpenGl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.OpenGl.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.PhysFs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.PhysFs.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.PhysFs.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.PhysFs.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.PhysFs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.PhysFs.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Platform.Windows.License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Platform.Windows.License.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Platform.Windows.Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Platform.Windows.Readme.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Platform.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Platform.Windows.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Platform.Windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Platform.Windows.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Platform.X11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Platform.X11.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Platform.X11.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Platform.X11.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Platform.X11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Platform.X11.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Sdl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Sdl.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Sdl.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Sdl.dll.config -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/Tao.Sdl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/Tao.Sdl.xml -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/alut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/alut.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/avcodec-51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/avcodec-51.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/avformat-51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/avformat-51.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/avutil-49.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/avutil-49.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/cg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/cg.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/cg.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/cg.dll.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/cgGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/cgGL.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/freeglut.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/freeglut.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/freetype6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/freetype6.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/glfw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/glfw.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/jpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/jpeg.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/libfreetype-6.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/libogg-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/libogg-0.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/libpng12-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/libpng12-0.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/libpng12.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/libpng12.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/libtiff-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/libtiff-3.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/libtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/libtiff.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/libvorbis-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/libvorbis-0.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/libvorbisfile-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/libvorbisfile-3.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/lua5.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/lua5.1.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/lua51.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/lua51.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/nvparse.dll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/nvparse.dll.txt -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/ode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/ode.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/physfs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/physfs.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/pthreadGC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/pthreadGC2.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/smpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/smpeg.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/swscale-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/swscale-0.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/wrap_oal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/wrap_oal.dll -------------------------------------------------------------------------------- /Lib/Tao/2.1.0.0/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/Tao/2.1.0.0/zlib1.dll -------------------------------------------------------------------------------- /Lib/linux-deps-ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Lib/linux-deps-ReadMe.txt -------------------------------------------------------------------------------- /Nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Nuget.config -------------------------------------------------------------------------------- /Source/Axiom.PreSettings.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Axiom.PreSettings.targets -------------------------------------------------------------------------------- /Source/Axiom.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Axiom.sln -------------------------------------------------------------------------------- /Source/Components/Axiom.Components.Paging/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Components/Axiom.Components.Paging/Page.cs -------------------------------------------------------------------------------- /Source/Components/Axiom.Components.Paging/PageContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Components/Axiom.Components.Paging/PageContent.cs -------------------------------------------------------------------------------- /Source/Components/Axiom.Components.Paging/PageID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Components/Axiom.Components.Paging/PageID.cs -------------------------------------------------------------------------------- /Source/Components/Axiom.Components.Paging/PageManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Components/Axiom.Components.Paging/PageManager.cs -------------------------------------------------------------------------------- /Source/Components/Axiom.Components.Paging/PageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Components/Axiom.Components.Paging/PageProvider.cs -------------------------------------------------------------------------------- /Source/Components/Axiom.Components.Paging/PageStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Components/Axiom.Components.Paging/PageStrategy.cs -------------------------------------------------------------------------------- /Source/Components/Axiom.Components.Paging/PagedWorld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Components/Axiom.Components.Paging/PagedWorld.cs -------------------------------------------------------------------------------- /Source/Components/Axiom.Components.Terrain/Terrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Components/Axiom.Components.Terrain/Terrain.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Platforms.Android/AndroidImageCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Platforms.Android/AndroidImageCodec.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Platforms.Android/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Platforms.Android/Plugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Platforms.Linux/LinuxPlatformManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Platforms.Linux/LinuxPlatformManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Platforms.iOS/Axiom.Platform.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Platforms.iOS/Axiom.Platform.iOS.csproj -------------------------------------------------------------------------------- /Source/Core/Axiom.Platforms.iOS/IPhoneImageCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Platforms.iOS/IPhoneImageCodec.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Platforms.iOS/IPhoneResourceArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Platforms.iOS/IPhoneResourceArchive.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.CgProgramManager/CgHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.CgProgramManager/CgHelper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.CgProgramManager/CgPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.CgProgramManager/CgPlugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.CgProgramManager/CgProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.CgProgramManager/CgProgram.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.DevILCodecs/ILImageCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.DevILCodecs/ILImageCodec.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.DevILCodecs/ILUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.DevILCodecs/ILUtil.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.DevILCodecs/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.DevILCodecs/Plugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.FreeImageCodecs/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.FreeImageCodecs/Plugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/AreaEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/AreaEmitter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/BoxEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/BoxEmitter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/CylinderEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/CylinderEmitter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/EllipsoidEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/EllipsoidEmitter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/ParticleFX.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/ParticleFX.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/PointEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/PointEmitter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/RingEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/RingEmitter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/RotationAffector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/RotationAffector.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.ParticleFX/ScaleAffector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.ParticleFX/ScaleAffector.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.Plugins.SystemDrawingCodecs/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.Plugins.SystemDrawingCodecs/Plugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/D3D9Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/D3D9Device.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/D3D9Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/D3D9Driver.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/D3D9Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/D3D9Helper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/D3D9Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/D3D9Plugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/D3D9Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/D3D9Texture.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/DefaultForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/DefaultForm.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/ScreenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/ScreenHelper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/WindowStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/WindowStyles.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX11/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX11/packages.config -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/D3D9Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/D3D9Device.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/D3D9Driver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/D3D9Driver.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/D3D9Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/D3D9Helper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/D3D9Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/D3D9Plugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/D3D9Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/D3D9Texture.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/D3D9VideoMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/D3D9VideoMode.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/DefaultForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/DefaultForm.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/ID3D9Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/ID3D9Resource.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/ScreenHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/ScreenHelper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.DirectX9/WindowStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.DirectX9/WindowStyles.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/ARBGpuProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/ARBGpuProgram.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/ATI/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/ATI/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/ATI/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/ATI/Lists.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/ATI/PixelShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/ATI/PixelShader.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/ATI/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/ATI/Structures.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/BaseGLSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/BaseGLSupport.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLContext.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLDepthBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLDepthBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLFBORTTManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLFBORTTManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLGpuProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLGpuProgram.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLHelper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLPBRTTManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLPBRTTManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLPBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLPBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLPixelUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLPixelUtil.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLRTTManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLRTTManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLRenderBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLRenderBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLRenderSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLRenderSystem.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLRenderTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLRenderTexture.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLSL/GLSLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLSL/GLSLHelper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLSurfaceDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLSurfaceDesc.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLTexture.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLTextureBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLTextureBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLX/XApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLX/XApi.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/GLX/Xrandr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/GLX/Xrandr.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/Plugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGL/Win32/GLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGL/Win32/GLHelper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES/GLESConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES/GLESConfig.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES/GLESContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES/GLESContext.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES/GLESPBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES/GLESPBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES/GLESPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES/GLESPlugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES/GLESSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES/GLESSupport.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES/GLESTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES/GLESTexture.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES/GLESUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES/GLESUtil.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES/iOS/iOSWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES/iOS/iOSWindow.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Config.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Context.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Plugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Support.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Support.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.OpenGLES2/GLES2Texture.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.RenderSystems.Xna.Content/Missing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.RenderSystems.Xna.Content/Missing.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/BspGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/BspGeometry.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/BspLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/BspLevel.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/BspNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/BspNode.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/BspPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/BspPlugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/BspResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/BspResourceManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/BspSceneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/BspSceneManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/BspSceneNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/BspSceneNode.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/BspStaticFaceGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/BspStaticFaceGroup.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/Collections/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/Collections/Map.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/Quake3Level.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/Quake3Level.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/Quake3Shader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/Quake3Shader.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/SpotlightFrustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/SpotlightFrustum.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Bsp/TextureLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Bsp/TextureLight.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Octree/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Octree/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Octree/Octree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Octree/Octree.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Octree/OctreeCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Octree/OctreeCamera.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Octree/OctreeNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Octree/OctreeNode.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.Octree/OctreePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.Octree/OctreePlugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/Capsule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/Capsule.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/DefaultZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/DefaultZone.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCPlane.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZCamera.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZFrustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZFrustum.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZLight.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZPPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZPPlugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZSceneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZSceneManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZSceneNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZSceneNode.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZSceneQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZSceneQuery.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZone.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/PCZoneFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/PCZoneFactory.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/Portal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/Portal.cs -------------------------------------------------------------------------------- /Source/Core/Axiom.SceneManagers.PCZ/Segment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom.SceneManagers.PCZ/Segment.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/Animable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/Animable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/Animation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/Animation.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/AnimationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/AnimationState.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/AnimationStateSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/AnimationStateSet.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/AnimationTrack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/AnimationTrack.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/AttachmentPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/AttachmentPoint.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/Bone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/Bone.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/Collections/BoneCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/Collections/BoneCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/Collections/Lists.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/KeyFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/KeyFrame.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/Pose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/Pose.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/Skeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/Skeleton.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/SkeletonInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/SkeletonInstance.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/SkeletonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/SkeletonManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Animating/TagPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Animating/TagPoint.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Axiom.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Axiom.csproj -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/AxiomCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/AxiomCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/BillboardSetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/BillboardSetCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/Deque.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/Deque.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/HashList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/HashList.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/KeyFrameCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/KeyFrameCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/Lists.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/MeshCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/MeshCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/NameValuePairList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/NameValuePairList.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/NamedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/NamedCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/NamedParameterList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/NamedParameterList.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/RadixSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/RadixSort.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/ReadOnlyDictionary~2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/ReadOnlyDictionary~2.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/SortedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/SortedList.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/SubEntityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/SubEntityCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/TextureLayerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/TextureLayerCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Collections/UnsortedCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Collections/UnsortedCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Configuration/Config.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Configuration/ConfigOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Configuration/ConfigOption.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Controllers/BaseControllerFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Controllers/BaseControllerFunction.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Controllers/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Controllers/Controller.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Controllers/ControllerManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Controllers/ControllerManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Controllers/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Controllers/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Controllers/FrameTimeControllerValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Controllers/FrameTimeControllerValue.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Controllers/IControllerFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Controllers/IControllerFunction.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Controllers/IControllerValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Controllers/IControllerValue.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/AbstractFactory~1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/AbstractFactory~1.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/AtomicWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/AtomicWrappers.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/AxiomException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/AxiomException.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Billboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Billboard.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/BillboardChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/BillboardChain.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/BillboardSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/BillboardSet.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/BitConverterEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/BitConverterEx.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Camera.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ChainedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ChainedEvent.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Collections/CameraCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Collections/CameraCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Collections/Lists.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Collections/MultiMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Collections/MultiMap.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Collections/NodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Collections/NodeCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Collections/SceneNodeCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Collections/SceneNodeCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Collections/ViewportCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Collections/ViewportCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ColorEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ColorEx.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/CoreEnums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/CoreEnums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/DefaultShadowCameraSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/DefaultShadowCameraSetup.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/DisposableObject.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/DistanceLodStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/DistanceLodStrategy.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/DynamicLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/DynamicLoader.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Entity.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Frustum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Frustum.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/IAbstractFactory~1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/IAbstractFactory~1.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ICopyable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ICopyable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ILodListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ILodListener.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/INamable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/INamable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/IPlatformManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/IPlatformManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/IPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/IPlugin.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/IShadowCameraSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/IShadowCameraSetup.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ITimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ITimer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Light.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Light.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/List~1Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/List~1Extensions.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/LodStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/LodStrategy.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/LodStrategyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/LodStrategyManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Log.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/LogManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ManualObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ManualObject.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Memory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Memory.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Mesh.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/MeshManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/MeshManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Meters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Meters.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/MovableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/MovableObject.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/MovableText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/MovableText.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/NameGenerator~1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/NameGenerator~1.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Node.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ObjectCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ObjectCreator.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ObjectExtensions.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ObjectManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ObjectManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ObjectTextDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ObjectTextDisplay.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Pair.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/PatchMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/PatchMesh.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/PatchSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/PatchSurface.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/PixelCountStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/PixelCountStrategy.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/PlatformInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/PlatformInformation.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/PlatformManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/PlatformManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/PluginException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/PluginException.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/PluginManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/PrefabFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/PrefabFactory.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ProgressiveMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ProgressiveMesh.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Rectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Rectangle.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Resource.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ResourceGroupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ResourceGroupManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ResourceManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Root.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Root.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/SceneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/SceneManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/SceneManagerEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/SceneManagerEnumerator.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/SceneNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/SceneNode.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/SceneQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/SceneQuery.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ShadeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ShadeOptions.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/ShadowTextureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/ShadowTextureManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Singleton.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/SpecialCaseRenderQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/SpecialCaseRenderQueue.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/StaticGeometry/GeometryBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/StaticGeometry/GeometryBucket.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/StaticGeometry/LODBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/StaticGeometry/LODBucket.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/StaticGeometry/MaterialBucket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/StaticGeometry/MaterialBucket.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/StaticGeometry/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/StaticGeometry/Region.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/StaticGeometry/StaticGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/StaticGeometry/StaticGeometry.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/StringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/StringConverter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/StringInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/StringInterface.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/SubEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/SubEntity.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/SubMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/SubMesh.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Texture.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/TextureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/TextureManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Timer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/Viewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/Viewport.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/WindowEventMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/WindowEventMonitor.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/WireBoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/WireBoundingBox.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/WorkQueue/DefaultWorkQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/WorkQueue/DefaultWorkQueue.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/WorkQueue/DefaultWorkQueueBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/WorkQueue/DefaultWorkQueueBase.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/WorkQueue/RequestID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/WorkQueue/RequestID.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Core/WorkQueue/WorkQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Core/WorkQueue/WorkQueue.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/CrossPlatform/Buffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/CrossPlatform/Buffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/CrossPlatform/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/CrossPlatform/ExtensionMethods.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/EventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/EventHandler.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/Archive.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/ArchiveManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/ArchiveManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/EmbeddedArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/EmbeddedArchive.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/FileSystemArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/FileSystemArchive.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/IsolatedStorageArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/IsolatedStorageArchive.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/Watcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/Watcher.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/WebArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/WebArchive.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/XapArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/XapArchive.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/FileSystem/ZipArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/FileSystem/ZipArchive.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Fonts/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Fonts/Font.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Fonts/FontManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Fonts/FontManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Fonts/FreetypeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Fonts/FreetypeWrapper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/AnyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/AnyBuilder.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/AutoParamDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/AutoParamDataSource.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/BufferStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/BufferStream.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/Collections/ConfigOptionMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/Collections/ConfigOptionMap.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/Collections/Lists.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/CompositionPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/CompositionPass.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/CompositionTargetPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/CompositionTargetPass.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/CompositionTechnique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/CompositionTechnique.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/Compositor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/Compositor.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/CompositorChain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/CompositorChain.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/CompositorInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/CompositorInstance.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/CompositorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/CompositorManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/CompositorScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/CompositorScriptLoader.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/DefaultHardwareIndexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/DefaultHardwareIndexBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/DefaultHardwareVertexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/DefaultHardwareVertexBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/DepthBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/DepthBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/DriverVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/DriverVersion.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/EdgeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/EdgeData.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/EdgeListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/EdgeListBuilder.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/GpuProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/GpuProgram.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/GpuProgramManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/GpuProgramManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/GpuProgramParameters.Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/GpuProgramParameters.Lists.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/GpuProgramParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/GpuProgramParameters.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/GpuProgramUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/GpuProgramUsage.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HardwareBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HardwareBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HardwareBufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HardwareBufferManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HardwareBufferManagerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HardwareBufferManagerBase.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HardwareCaps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HardwareCaps.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HardwareIndexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HardwareIndexBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HardwareOcclusionQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HardwareOcclusionQuery.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HardwarePixelBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HardwarePixelBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HardwareVertexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HardwareVertexBuffer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HighLevelGpuProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HighLevelGpuProgram.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/HighLevelGpuProgramManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/HighLevelGpuProgramManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/ICompositorLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/ICompositorLogic.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/ICustomCompositionPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/ICustomCompositionPass.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/IHardwareBufferLicensee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/IHardwareBufferLicensee.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/IRenderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/IRenderable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/Material.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/MaterialManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/MaterialManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/MovablePlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/MovablePlane.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/MultiRenderTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/MultiRenderTarget.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/NullProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/NullProgram.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/Pass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/Pass.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/QueuedRenderableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/QueuedRenderableCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/Rectangle2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/Rectangle2D.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderOperation.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderPriorityGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderPriorityGroup.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderQueue.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderQueueGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderQueueGroup.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderQueueInvocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderQueueInvocation.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderSystem.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderTarget.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderTexture.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderWindow.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RenderWindowDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RenderWindowDescription.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/RibbonTrail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/RibbonTrail.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/ShadowCaster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/ShadowCaster.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/ShadowRenderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/ShadowRenderable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/ShadowVolumeExtrudeProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/ShadowVolumeExtrudeProgram.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/SimpleRenderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/SimpleRenderable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/SoftwareBufferManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/SoftwareBufferManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/SpotShadowFadePng.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/SpotShadowFadePng.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/StaticFaceGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/StaticFaceGroup.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/Technique.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/Technique.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/TempBlendedBufferInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/TempBlendedBufferInfo.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/TextureUnitState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/TextureUnitState.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/TriangleBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/TriangleBuilder.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/UnifiedHighLevelGpuProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/UnifiedHighLevelGpuProgram.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/VertexBufferBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/VertexBufferBinding.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/VertexBufferLicense.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/VertexBufferLicense.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/VertexDeclaration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/VertexDeclaration.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/VertexElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/VertexElement.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Graphics/VertexIndexData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Graphics/VertexIndexData.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Input/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Input/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Input/InputEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Input/InputEventArgs.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Input/InputReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Input/InputReader.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Input/KeyEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Input/KeyEventArgs.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Input/MouseEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Input/MouseEventArgs.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/AxisAlignedBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/AxisAlignedBox.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Collections/BaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Collections/BaseCollection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Collections/Lists.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Collections/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Collections/Pair.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Collections/Vector3Collection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Collections/Vector3Collection.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Degree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Degree.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Matrix3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Matrix3.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Matrix4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Matrix4.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Plane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Plane.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/PlaneBoundedVolume.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/PlaneBoundedVolume.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/PositionalSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/PositionalSpline.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Quaternion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Quaternion.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Radian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Radian.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Ray.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Real.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Real.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/RotationalSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/RotationalSpline.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Sphere.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Sphere.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Spline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Spline.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Tuple.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Utility.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Vector2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Vector2.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Vector3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Vector3.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Math/Vector4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Math/Vector4.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/Bitwise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/Bitwise.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/Codec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/Codec.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/CodecManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/CodecManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/DDSCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/DDSCodec.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/Image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/Image.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/ImageCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/ImageCodec.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/LinearResampler.Byte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/LinearResampler.Byte.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/LinearResampler.Float32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/LinearResampler.Float32.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/LinearResampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/LinearResampler.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/NearestResampler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/NearestResampler.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/NullCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/NullCodec.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/OptimizedPixelConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/OptimizedPixelConversion.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/PVRTCCodec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/PVRTCCodec.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/PixelBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/PixelBox.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/PixelConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/PixelConverter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Media/PixelUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Media/PixelUtil.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/NativeLibraryLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/NativeLibraryLoader.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/OgreVersionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/OgreVersionAttribute.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/Elements/BorderPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/Elements/BorderPanel.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/Elements/Factories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/Elements/Factories.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/Elements/Panel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/Elements/Panel.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/Elements/TextArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/Elements/TextArea.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/IOverlayElementFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/IOverlayElementFactory.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/Overlay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/Overlay.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/OverlayElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/OverlayElement.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/OverlayElementContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/OverlayElementContainer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/OverlayElementManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/OverlayElementManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/OverlayManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/OverlayManager.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Overlays/Overlays.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Overlays/Overlays.cd -------------------------------------------------------------------------------- /Source/Core/Axiom/ParticleSystems/Collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/ParticleSystems/Collections.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/ParticleSystems/Collections/Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/ParticleSystems/Collections/Lists.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/ParticleSystems/Particle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/ParticleSystems/Particle.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/ParticleSystems/ParticleAffector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/ParticleSystems/ParticleAffector.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/ParticleSystems/ParticleEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/ParticleSystems/ParticleEmitter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/ParticleSystems/ParticleSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/ParticleSystems/ParticleSystem.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/ParticleSystems/ParticleVisualData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/ParticleSystems/ParticleVisualData.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/CommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/CommandAttribute.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/Compiler/AST/AbstractNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/Compiler/AST/AbstractNode.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/Compiler/CompileError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/Compiler/CompileError.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/Compiler/ConcreteNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/Compiler/ConcreteNode.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/Compiler/Keywords.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/Compiler/Keywords.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/Compiler/Parser/Tokens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/Compiler/Parser/Tokens.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/Compiler/ScriptCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/Compiler/ScriptCompiler.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/ICommand.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/IExecuteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/IExecuteCommand.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/IParser.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/IPropertyCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/IPropertyCommand.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/IScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/IScriptLoader.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/ParseHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/ParseHelper.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/ParserCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/ParserCommandAttribute.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/ScriptEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/ScriptEnumAttribute.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Scripting/ScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Scripting/ScriptableObject.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Serialization/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Serialization/Enums.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Serialization/MaterialSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Serialization/MaterialSerializer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Serialization/MeshSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Serialization/MeshSerializer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Serialization/MeshSerializerImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Serialization/MeshSerializerImpl.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Serialization/OgreSkeletonReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Serialization/OgreSkeletonReader.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Serialization/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Serialization/Serializer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Serialization/StreamSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Serialization/StreamSerializer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Utilities/Contract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Utilities/Contract.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Utilities/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Utilities/Exceptions.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Utilities/Proclaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Utilities/Proclaim.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/Comparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/Comparer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/ExpressionCompiler/Conversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/ExpressionCompiler/Conversion.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/ExpressionCompiler/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/ExpressionCompiler/Extensions.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/ExpressionCompiler/Interpreter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/ExpressionCompiler/Interpreter.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/ExpressionCompiler/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/ExpressionCompiler/Math.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/HashSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/HashSet.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/Hashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/Hashtable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/ICloneable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/ICloneable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/Locale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/Locale.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/SortedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/SortedList.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/SortedList~2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/SortedList~2.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Collections.ArrayList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Collections.ArrayList.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Collections.Comparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Collections.Comparer.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Collections.Hashtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Collections.Hashtable.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Collections.SortedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Collections.SortedList.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Collections.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Diagnostics.Stopwatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Diagnostics.Stopwatch.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Diagnostics.Trace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Diagnostics.Trace.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Diagnostics.TraceImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Diagnostics.TraceImpl.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Runtime.Serialization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Runtime.Serialization.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.Security.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/mono/System.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/mono/System.cs -------------------------------------------------------------------------------- /Source/Core/Axiom/runtimes/win-x64/native/freetype.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/runtimes/win-x64/native/freetype.dll -------------------------------------------------------------------------------- /Source/Core/Axiom/runtimes/win-x64/native/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/runtimes/win-x64/native/freetype.lib -------------------------------------------------------------------------------- /Source/Core/Axiom/runtimes/win-x86/native/freetype.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/runtimes/win-x86/native/freetype.dll -------------------------------------------------------------------------------- /Source/Core/Axiom/runtimes/win-x86/native/freetype.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/Axiom/runtimes/win-x86/native/freetype.lib -------------------------------------------------------------------------------- /Source/Core/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Core/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Framework/Axiom.Framework/Axiom.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Framework/Axiom.Framework/Axiom.Framework.csproj -------------------------------------------------------------------------------- /Source/Framework/Axiom.Framework/Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Framework/Axiom.Framework/Game.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.BezierPatch/BezierPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.BezierPatch/BezierPatch.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.BezierPatch/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.BezierPatch/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Android/App.config -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Android/App.xaml -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Android/App.xaml.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/Icons/files.manifest: -------------------------------------------------------------------------------- 1 | AxiomIcon.ico -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/Materials/Programs/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/Materials/Scripts/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/Materials/Textures/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/Models/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/Particles/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/SdkTrays/Fonts/files.manifest: -------------------------------------------------------------------------------- 1 | Caption.xnb 2 | SdkTrays.fontdef 3 | Value.xnb -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/SdkTrays/Materials/Programs/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/SdkTrays/Materials/Scripts/files.manifest: -------------------------------------------------------------------------------- 1 | SdkTrays.material -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/SdkTrays/Overlays/files.manifest: -------------------------------------------------------------------------------- 1 | SdkTrays.overlay -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Android/Content/Thumbnails/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Linux/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Linux/App.config -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Linux/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Linux/Program.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Shared/App.config -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Shared/App.xaml -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Shared/App.xaml.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/Icons/files.manifest: -------------------------------------------------------------------------------- 1 | AxiomIcon.ico -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/Materials/Programs/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/Materials/Scripts/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/Materials/Textures/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/Models/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/Particles/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/SdkTrays/Fonts/files.manifest: -------------------------------------------------------------------------------- 1 | Caption.xnb 2 | SdkTrays.fontdef 3 | Value.xnb -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/SdkTrays/Materials/Programs/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/SdkTrays/Materials/Scripts/files.manifest: -------------------------------------------------------------------------------- 1 | SdkTrays.material -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/SdkTrays/Overlays/files.manifest: -------------------------------------------------------------------------------- 1 | SdkTrays.overlay -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Content/Thumbnails/files.manifest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Main.Droid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Shared/Main.Droid.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Shared/MainPage.xaml -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Shared/Program.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Shared/host.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Shared/host.html -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Win32/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Win32/App.config -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Browser.Win32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Browser.Win32/Program.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Bsp/Axiom.Samples.Bsp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Bsp/Axiom.Samples.Bsp.csproj -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Bsp/BSPSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Bsp/BSPSample.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Bsp/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Bsp/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.CameraTracking/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.CameraTracking/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Character/CharacterSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Character/CharacterSample.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Character/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Character/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Sample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Sample.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/SampleContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/SampleContext.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/SamplePlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/SamplePlugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/SdkCameraManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/SdkCameraManager.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/SdkSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/SdkSample.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/Button.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/CheckBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/CheckBox.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/DecorWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/DecorWidget.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/Label.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/LogoWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/LogoWidget.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/ParamsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/ParamsPanel.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/ProgressBar.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/SdkTrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/SdkTrays.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/SelectMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/SelectMenu.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/Separator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/Separator.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/Slider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/Slider.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/TextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/TextBox.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Common/Tray/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Common/Tray/Widget.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.DynamicTexture/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.DynamicTexture/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Instancing/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Instancing/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.MousePicking/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.MousePicking/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Ocean/MaterialControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Ocean/MaterialControls.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Ocean/OceanSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Ocean/OceanSample.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Ocean/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Ocean/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Ocean/ShaderControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Ocean/ShaderControl.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.ParticleFX/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.ParticleFX/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Primitives/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Primitives/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.ShaderSystem/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.ShaderSystem/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.ShaderSystem/ShaderSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.ShaderSystem/ShaderSample.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Smoke/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Smoke/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Smoke/SmokeSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Smoke/SmokeSample.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.SphereMapping/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.SphereMapping/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Terrain/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Terrain/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.Terrain/TerrainSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.Terrain/TerrainSample.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.VolumeTexture/Julia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.VolumeTexture/Julia.cs -------------------------------------------------------------------------------- /Source/Samples/Axiom.Samples.VolumeTexture/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/Axiom.Samples.VolumeTexture/Plugin.cs -------------------------------------------------------------------------------- /Source/Samples/media/Axiom.Samples.Media.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/Axiom.Samples.Media.csproj -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/AxiomCore.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/AxiomCore.zip -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/SdkTrays.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/SdkTrays.zip -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/Sinbad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/Sinbad.zip -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/chiropteraDM.pk3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/chiropteraDM.pk3 -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/chiropteraDM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/chiropteraDM.txt -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/chiropteraDM.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/chiropteraDM.zip -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/cubemap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/cubemap.zip -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/cubemapsJS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/cubemapsJS.zip -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/ogretestmap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/ogretestmap.zip -------------------------------------------------------------------------------- /Source/Samples/media/media/Archives/skybox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Archives/skybox.zip -------------------------------------------------------------------------------- /Source/Samples/media/media/Icons/AxiomIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Icons/AxiomIcon.ico -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Aurora.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Aurora.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/BumpyMetal.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/BumpyMetal.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Droplet.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Droplet.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Examples.program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Examples.program -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Flair2.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Flair2.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Flare.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Flare.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Ocean.controls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Ocean.controls -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Ocean.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Ocean.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/OgreHead.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/OgreHead.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Penguin.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Penguin.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/Rockwall.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/Rockwall.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/TudorHouse.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/TudorHouse.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Materials/smoke.material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Materials/smoke.material -------------------------------------------------------------------------------- /Source/Samples/media/media/Meshes/ogrehead.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Meshes/ogrehead.mesh -------------------------------------------------------------------------------- /Source/Samples/media/media/Meshes/penguin.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Meshes/penguin.mesh -------------------------------------------------------------------------------- /Source/Samples/media/media/Meshes/penguin.skeleton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Meshes/penguin.skeleton -------------------------------------------------------------------------------- /Source/Samples/media/media/Meshes/sphere.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Meshes/sphere.mesh -------------------------------------------------------------------------------- /Source/Samples/media/media/Meshes/tudorhouse.mesh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Meshes/tudorhouse.mesh -------------------------------------------------------------------------------- /Source/Samples/media/media/Particles/Aureola.particle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Particles/Aureola.particle -------------------------------------------------------------------------------- /Source/Samples/media/media/Particles/Fireworks.particle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Particles/Fireworks.particle -------------------------------------------------------------------------------- /Source/Samples/media/media/Particles/Rain.particle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Particles/Rain.particle -------------------------------------------------------------------------------- /Source/Samples/media/media/Particles/Snow.particle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Particles/Snow.particle -------------------------------------------------------------------------------- /Source/Samples/media/media/Particles/smoke.particle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Particles/smoke.particle -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/ASCIIFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/ASCIIFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Bloom2_ps20.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Bloom2_ps20.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Bloom2_ps20.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Bloom2_ps20.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Bloom_ps20.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Bloom_ps20.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Bloom_vs11.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Bloom_vs11.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur0_ps20.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur0_ps20.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur0_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur0_vs.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur0_vs11.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur0_vs11.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur1_ps20.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur1_ps20.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur1_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur1_vs.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur1_vs11.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur1_vs11.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/BlurH_ps20.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/BlurH_ps20.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/BlurH_ps20.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/BlurH_ps20.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/BlurV_ps20.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/BlurV_ps20.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/BlurV_ps20.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/BlurV_ps20.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur_ps.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur_ps.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur_vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur_vs.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Blur_vs11.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Blur_vs11.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Combine_fp.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Combine_fp.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Common.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Common.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/DOF_ps.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/DOF_ps.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/DepthShadowmap.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/DepthShadowmap.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/DitherFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/DitherFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Example_Basic.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Example_Basic.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Example_Basic.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Example_Basic.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Example_CelShading.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Example_CelShading.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Example_Fresnel.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Example_Fresnel.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Example_FresnelPS.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Example_FresnelPS.asm -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Example_Projection.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Example_Projection.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/GlassFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/GlassFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Grass.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Grass.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/GrayScale.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/GrayScale.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/HalftoneFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/HalftoneFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/HeatVision.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/HeatVision.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/InvertFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/InvertFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/LaplaceFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/LaplaceFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/NightVisionFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/NightVisionFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Ocean2GLSL.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Ocean2GLSL.frag -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Ocean2GLSL.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Ocean2GLSL.vert -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Ocean2HLSL_Cg.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Ocean2HLSL_Cg.frag -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Ocean2HLSL_Cg.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Ocean2HLSL_Cg.vert -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/OffsetMapping.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/OffsetMapping.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/OffsetMapping.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/OffsetMapping.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/OffsetMappingFp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/OffsetMappingFp.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/OffsetMappingVp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/OffsetMappingVp.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/OldMovieFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/OldMovieFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/OldTV.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/OldTV.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/ParticleGS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/ParticleGS.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/PassthroughVP.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/PassthroughVP.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/PosterizeFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/PosterizeFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Radial_Blur_FP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Radial_Blur_FP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/SharpenEdgesFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/SharpenEdgesFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/StdQuad_vp.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/StdQuad_vp.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/StdQuad_vp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/StdQuad_vp.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/Swizzle.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/Swizzle.gp -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/SwizzleGP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/SwizzleGP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/SwizzleGP.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/SwizzleGP.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/TilingFP.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/TilingFP.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/crowdVp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/crowdVp.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/hdr.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/hdr.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/hdr.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/hdr.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/hdr_bloom.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/hdr_bloom.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/hdrutils.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/hdrutils.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/instancing.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/instancing.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/instancingVp.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/instancingVp.glsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/isosurf.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/isosurf.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/mrttestfp.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/mrttestfp.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/oceanGLSL.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/oceanGLSL.frag -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/oceanGLSL.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/oceanGLSL.vert -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/oceanHLSL_Cg.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/oceanHLSL_Cg.frag -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/oceanHLSL_Cg.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/oceanHLSL_Cg.vert -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/pssm.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/pssm.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/pssm.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/pssm.hlsl -------------------------------------------------------------------------------- /Source/Samples/media/media/Programs/shadows.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Programs/shadows.cg -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/BumpyMetal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/BumpyMetal.jpg -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/GreenSkin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/GreenSkin.jpg -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/NoiseVolume.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/NoiseVolume.dds -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/RustySteel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/RustySteel.jpg -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/aureola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/aureola.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/axiomlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/axiomlogo.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/basic_droplet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/basic_droplet.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/clouds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/clouds.jpg -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/flare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/flare.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/flaretrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/flaretrail.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/frost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/frost.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/fw12b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/fw12b.jpg -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/penguin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/penguin.jpg -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/rockwall.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/rockwall.tga -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/rockwall_NH.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/rockwall_NH.tga -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/smoke.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/smokecolors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/smokecolors.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/spheremap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/spheremap.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/terrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/terrain.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/tusk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/tusk.jpg -------------------------------------------------------------------------------- /Source/Samples/media/media/Textures/waves2.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Textures/waves2.dds -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_bezier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_bezier.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_bsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_bsp.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_bump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_bump.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_cel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_cel.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_char.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_char.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_comp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_comp.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_dyntex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_dyntex.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_error.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_facial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_facial.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_grass.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_ocean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_ocean.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_skybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_skybox.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_smoke.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_texfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_texfx.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_trans.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_voltex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_voltex.png -------------------------------------------------------------------------------- /Source/Samples/media/media/Thumbnails/thumb_water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Samples/media/media/Thumbnails/thumb_water.png -------------------------------------------------------------------------------- /Source/Tests/Axiom.Tests.Unit/Axiom.Tests.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Tests/Axiom.Tests.Unit/Axiom.Tests.Unit.csproj -------------------------------------------------------------------------------- /Source/Tests/Axiom.Tests.Unit/Core/LodStrategyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Tests/Axiom.Tests.Unit/Core/LodStrategyTests.cs -------------------------------------------------------------------------------- /Source/Tests/Axiom.Tests.Unit/Core/SceneNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Tests/Axiom.Tests.Unit/Core/SceneNodeTests.cs -------------------------------------------------------------------------------- /Source/Tests/Axiom.Tests.Unit/EngineConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/Tests/Axiom.Tests.Unit/EngineConfig.xml -------------------------------------------------------------------------------- /Source/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/Source/global.json -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axiom3d/axiom/HEAD/readme.md --------------------------------------------------------------------------------