├── .gitignore ├── LICENSE.txt ├── Metal Architecture.txt ├── Metal Diagram.png ├── README.md ├── cinderblock.png ├── cinderblock.xml ├── include ├── Batch.h ├── CameraManager.h ├── CinderMetalCocoa.h ├── Context.h ├── Draw.h ├── ImageHelpers.h ├── MetalConstants.h ├── MetalGeom.h ├── MetalHelpers.hpp ├── MetalMacros.h ├── MovieMetal.h ├── RenderCommandBuffer.h ├── RendererMetal.h ├── RendererMetalImpl.h ├── Scope.h ├── Shader.h ├── ShaderTypes.h ├── ShaderUtils.h ├── UniformBlock.hpp ├── VertexBuffer.h ├── apple │ ├── Argument.h │ ├── BlitEncoder.h │ ├── CommandBuffer.h │ ├── CommandEncoder.h │ ├── ComputeEncoder.h │ ├── ComputePipelineState.h │ ├── DataBuffer.h │ ├── DepthState.h │ ├── Library.h │ ├── MetalEnums.h │ ├── RenderEncoder.h │ ├── RenderPassDescriptor.h │ ├── RenderPipelineState.h │ ├── SamplerState.h │ └── TextureBuffer.h └── metal.h ├── samples ├── ARKit │ ├── include │ │ ├── CinderARKitApp.h │ │ └── Resources.h │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ ├── CinderARKitApp.mm │ │ ├── NativeBridge.h │ │ ├── NativeBridge.mm │ │ └── Shaders.metal │ └── xcode_ios │ │ ├── CinderARKit.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── CinderARKit_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ └── LaunchScreen.xib ├── Batch │ ├── assets │ │ └── checker.png │ ├── include │ │ ├── Resources.h │ │ └── SharedTypes.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ ├── BatchApp.cpp │ │ └── Shaders.metal │ ├── xcode │ │ ├── Batch.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── Batch_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── Batch.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Batch_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ └── LaunchScreen.xib ├── Cube │ ├── assets │ │ └── texture.jpg │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ ├── CubeApp.cpp │ │ └── Shaders.metal │ ├── xcode │ │ ├── Cube.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── Cube_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── Cube.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── Cube_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ └── LaunchScreen.xib ├── DepthOfField │ ├── assets │ │ ├── clay.debug.png │ │ ├── clay.png │ │ └── gold.png │ ├── include │ │ ├── Resources.h │ │ └── SharedTypes.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ ├── DepthOfFieldApp.mm │ │ └── Shaders.metal │ ├── xcode │ │ ├── DepthOfField.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── DepthOfField_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── DepthOfField.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── DepthOfField_Prefix.pch │ │ └── Info.plist ├── DrawingFunctions │ ├── .gitignore │ ├── assets │ │ └── cinderblock.png │ ├── include │ │ ├── Resources.h │ │ └── SharedTypes.h │ ├── resources │ │ └── CinderApp.icns │ ├── src │ │ ├── MetalBasicApp.cpp │ │ └── Shaders.metal │ └── xcode │ │ ├── Info.plist │ │ ├── MetalDrawing.xcodeproj │ │ └── project.pbxproj │ │ └── MetalDrawing_Prefix.pch ├── FboBasic │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ ├── FboBasicApp.cpp │ │ └── Shaders.metal │ ├── xcode │ │ ├── FboBasic.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── FboBasic_Prefix.pch │ │ └── Info.plist │ └── xcode_ios │ │ ├── FboBasic.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── FboBasic_Prefix.pch │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ └── LaunchScreen.xib ├── MetalBasic │ ├── include │ │ ├── Resources.h │ │ └── SharedTypes.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ ├── MetalBasicApp.cpp │ │ └── Shaders.metal │ ├── xcode │ │ ├── Info.plist │ │ ├── MetalBasic.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── MetalBasic_Prefix.pch │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── MetalBasic.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── MetalBasic_Prefix.pch ├── MetalCamera │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── CinderApp_ios.png │ ├── src │ │ ├── MetalCameraApp.cpp │ │ └── Shaders.metal │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── MetalCamera.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── MetalCamera_Prefix.pch ├── ParticleSorting │ ├── assets │ │ ├── particle.png │ │ └── particle_square.png │ ├── include │ │ └── SharedData.h │ ├── resources │ │ ├── CinderApp_ios.png │ │ └── MetalIcon.png │ ├── src │ │ ├── ParticleSortingApp.cpp │ │ └── Shaders.metal │ ├── xcode │ │ ├── Info.plist │ │ ├── ParticleSorting.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── Particles_Prefix.pch │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── ParticleSorting.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── ParticleSorting_Prefix.pch ├── StockShader │ ├── assets │ │ └── cinderblock.png │ ├── include │ │ ├── Resources.h │ │ └── SharedTypes.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ ├── Shaders.metal │ │ └── StockShaderApp.cpp │ ├── xcode │ │ ├── Info.plist │ │ ├── StockShader.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── StockShader_Prefix.pch │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── StockShader.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── StockShader_Prefix.pch ├── TextureSlices │ ├── .gitignore │ ├── assets │ │ ├── cinderblock.png │ │ ├── cinderblock_0.png │ │ ├── cinderblock_1.png │ │ ├── cinderblock_2.png │ │ └── cinderblock_3.png │ ├── include │ │ ├── Resources.h │ │ └── SharedTypes.h │ ├── resources │ │ └── CinderApp.icns │ ├── src │ │ ├── MetalBasicApp.cpp │ │ └── Shaders.metal │ ├── xcode │ │ ├── Info.plist │ │ ├── TextureSlice.xcodeproj │ │ │ └── project.pbxproj │ │ └── TextureSlice_Prefix.pch │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── TextureSlice.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── TextureSlice_Prefix.pch ├── VertexBuffer │ ├── assets │ │ ├── checker.png │ │ ├── checker_trans.png │ │ ├── texture.jpg │ │ ├── texture.png │ │ └── texture_trans.png │ ├── include │ │ └── SharedData.h │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── MetalIcon.png │ ├── src │ │ ├── Shaders.metal │ │ └── VertexBufferApp.cpp │ ├── xcode │ │ ├── Info.plist │ │ ├── VertexBuffer.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── VertexBuffer_Prefix.pch │ └── xcode_ios │ │ ├── Images.xcassets │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667@2x.png │ │ │ └── Default-736h@3x~iphone.png │ │ ├── Info.plist │ │ ├── LaunchScreen.xib │ │ ├── VertexBuffer.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── VertexBuffer_Prefix.pch └── VideoMetalTexture │ ├── include │ └── Resources.h │ ├── resources │ └── CinderApp_ios.png │ ├── src │ ├── Shaders.metal │ └── VideoMetalTextureApp.mm │ └── xcode_ios │ ├── Images.xcassets │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-568h@2x.png │ │ ├── Default-667@2x.png │ │ └── Default-736h@3x~iphone.png │ ├── Info.plist │ ├── LaunchScreen.xib │ ├── VideoMetalTexture.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── VideoMetalTexture_Prefix.pch ├── src ├── Batch.cpp ├── CameraManager.mm ├── CinderMetalCocoa.mm ├── Context.cpp ├── Draw.cpp ├── ImageHelpers.mm ├── MovieMetal.mm ├── RenderCommandBuffer.mm ├── RendererMetal.mm ├── RendererMetalImpl.mm ├── Scope.mm ├── Shader.mm ├── UniformBlock.cpp ├── VertexBuffer.cpp └── apple │ ├── Argument.mm │ ├── BlitEncoder.mm │ ├── CommandBuffer.mm │ ├── CommandEncoder.mm │ ├── ComputeEncoder.mm │ ├── ComputePipelineState.mm │ ├── DataBuffer.mm │ ├── DepthState.mm │ ├── Library.mm │ ├── MetalGeom.mm │ ├── RenderEncoder.mm │ ├── RenderPassDescriptor.mm │ ├── RenderPipelineState.mm │ ├── SamplerState.mm │ └── TextureBuffer.mm └── templates └── MetalTemplate ├── src ├── Shaders.metal └── _TBOX_PREFIX_App.cpp ├── template.xml └── xcode_ios ├── Images.xcassets └── LaunchImage.launchimage │ ├── Contents.json │ ├── Default-568h@2x.png │ ├── Default-667@2x.png │ └── Default-736h@3x~iphone.png ├── Info.plist ├── LaunchScreen.xib ├── MetalTemplate.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── MetalTemplate_Prefix.pch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Metal Architecture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/Metal Architecture.txt -------------------------------------------------------------------------------- /Metal Diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/Metal Diagram.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/README.md -------------------------------------------------------------------------------- /cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/cinderblock.png -------------------------------------------------------------------------------- /cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/cinderblock.xml -------------------------------------------------------------------------------- /include/Batch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/Batch.h -------------------------------------------------------------------------------- /include/CameraManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/CameraManager.h -------------------------------------------------------------------------------- /include/CinderMetalCocoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/CinderMetalCocoa.h -------------------------------------------------------------------------------- /include/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/Context.h -------------------------------------------------------------------------------- /include/Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/Draw.h -------------------------------------------------------------------------------- /include/ImageHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/ImageHelpers.h -------------------------------------------------------------------------------- /include/MetalConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/MetalConstants.h -------------------------------------------------------------------------------- /include/MetalGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/MetalGeom.h -------------------------------------------------------------------------------- /include/MetalHelpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/MetalHelpers.hpp -------------------------------------------------------------------------------- /include/MetalMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/MetalMacros.h -------------------------------------------------------------------------------- /include/MovieMetal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/MovieMetal.h -------------------------------------------------------------------------------- /include/RenderCommandBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/RenderCommandBuffer.h -------------------------------------------------------------------------------- /include/RendererMetal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/RendererMetal.h -------------------------------------------------------------------------------- /include/RendererMetalImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/RendererMetalImpl.h -------------------------------------------------------------------------------- /include/Scope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/Scope.h -------------------------------------------------------------------------------- /include/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/Shader.h -------------------------------------------------------------------------------- /include/ShaderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/ShaderTypes.h -------------------------------------------------------------------------------- /include/ShaderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/ShaderUtils.h -------------------------------------------------------------------------------- /include/UniformBlock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/UniformBlock.hpp -------------------------------------------------------------------------------- /include/VertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/VertexBuffer.h -------------------------------------------------------------------------------- /include/apple/Argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/Argument.h -------------------------------------------------------------------------------- /include/apple/BlitEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/BlitEncoder.h -------------------------------------------------------------------------------- /include/apple/CommandBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/CommandBuffer.h -------------------------------------------------------------------------------- /include/apple/CommandEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/CommandEncoder.h -------------------------------------------------------------------------------- /include/apple/ComputeEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/ComputeEncoder.h -------------------------------------------------------------------------------- /include/apple/ComputePipelineState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/ComputePipelineState.h -------------------------------------------------------------------------------- /include/apple/DataBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/DataBuffer.h -------------------------------------------------------------------------------- /include/apple/DepthState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/DepthState.h -------------------------------------------------------------------------------- /include/apple/Library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/Library.h -------------------------------------------------------------------------------- /include/apple/MetalEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/MetalEnums.h -------------------------------------------------------------------------------- /include/apple/RenderEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/RenderEncoder.h -------------------------------------------------------------------------------- /include/apple/RenderPassDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/RenderPassDescriptor.h -------------------------------------------------------------------------------- /include/apple/RenderPipelineState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/RenderPipelineState.h -------------------------------------------------------------------------------- /include/apple/SamplerState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/SamplerState.h -------------------------------------------------------------------------------- /include/apple/TextureBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/apple/TextureBuffer.h -------------------------------------------------------------------------------- /include/metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/include/metal.h -------------------------------------------------------------------------------- /samples/ARKit/include/CinderARKitApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/include/CinderARKitApp.h -------------------------------------------------------------------------------- /samples/ARKit/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/include/Resources.h -------------------------------------------------------------------------------- /samples/ARKit/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/ARKit/src/CinderARKitApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/src/CinderARKitApp.mm -------------------------------------------------------------------------------- /samples/ARKit/src/NativeBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/src/NativeBridge.h -------------------------------------------------------------------------------- /samples/ARKit/src/NativeBridge.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/src/NativeBridge.mm -------------------------------------------------------------------------------- /samples/ARKit/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/src/Shaders.metal -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/CinderARKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/CinderARKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/CinderARKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/CinderARKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/CinderARKit_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/CinderARKit_Prefix.pch -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/ARKit/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ARKit/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/Batch/assets/checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/assets/checker.png -------------------------------------------------------------------------------- /samples/Batch/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/include/Resources.h -------------------------------------------------------------------------------- /samples/Batch/include/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/include/SharedTypes.h -------------------------------------------------------------------------------- /samples/Batch/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/Batch/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/Batch/src/BatchApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/src/BatchApp.cpp -------------------------------------------------------------------------------- /samples/Batch/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/src/Shaders.metal -------------------------------------------------------------------------------- /samples/Batch/xcode/Batch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode/Batch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/Batch/xcode/Batch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode/Batch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/Batch/xcode/Batch_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode/Batch_Prefix.pch -------------------------------------------------------------------------------- /samples/Batch/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode/Info.plist -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/Batch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/Batch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/Batch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/Batch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/Batch_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/Batch_Prefix.pch -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/Batch/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Batch/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/Cube/assets/texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/assets/texture.jpg -------------------------------------------------------------------------------- /samples/Cube/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/include/Resources.h -------------------------------------------------------------------------------- /samples/Cube/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/Cube/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/Cube/src/CubeApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/src/CubeApp.cpp -------------------------------------------------------------------------------- /samples/Cube/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/src/Shaders.metal -------------------------------------------------------------------------------- /samples/Cube/xcode/Cube.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode/Cube.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/Cube/xcode/Cube.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode/Cube.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/Cube/xcode/Cube_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode/Cube_Prefix.pch -------------------------------------------------------------------------------- /samples/Cube/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode/Info.plist -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/Cube.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/Cube.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/Cube.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/Cube.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/Cube_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/Cube_Prefix.pch -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/Cube/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/Cube/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/DepthOfField/assets/clay.debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/assets/clay.debug.png -------------------------------------------------------------------------------- /samples/DepthOfField/assets/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/assets/clay.png -------------------------------------------------------------------------------- /samples/DepthOfField/assets/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/assets/gold.png -------------------------------------------------------------------------------- /samples/DepthOfField/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/include/Resources.h -------------------------------------------------------------------------------- /samples/DepthOfField/include/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/include/SharedTypes.h -------------------------------------------------------------------------------- /samples/DepthOfField/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/DepthOfField/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/DepthOfField/src/DepthOfFieldApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/src/DepthOfFieldApp.mm -------------------------------------------------------------------------------- /samples/DepthOfField/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/src/Shaders.metal -------------------------------------------------------------------------------- /samples/DepthOfField/xcode/DepthOfField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/xcode/DepthOfField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/DepthOfField/xcode/DepthOfField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/xcode/DepthOfField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/DepthOfField/xcode/DepthOfField_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/xcode/DepthOfField_Prefix.pch -------------------------------------------------------------------------------- /samples/DepthOfField/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/xcode/Info.plist -------------------------------------------------------------------------------- /samples/DepthOfField/xcode_ios/DepthOfField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/xcode_ios/DepthOfField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/DepthOfField/xcode_ios/DepthOfField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/xcode_ios/DepthOfField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/DepthOfField/xcode_ios/DepthOfField_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/xcode_ios/DepthOfField_Prefix.pch -------------------------------------------------------------------------------- /samples/DepthOfField/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DepthOfField/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/DrawingFunctions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/.gitignore -------------------------------------------------------------------------------- /samples/DrawingFunctions/assets/cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/assets/cinderblock.png -------------------------------------------------------------------------------- /samples/DrawingFunctions/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/include/Resources.h -------------------------------------------------------------------------------- /samples/DrawingFunctions/include/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/include/SharedTypes.h -------------------------------------------------------------------------------- /samples/DrawingFunctions/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/DrawingFunctions/src/MetalBasicApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/src/MetalBasicApp.cpp -------------------------------------------------------------------------------- /samples/DrawingFunctions/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/src/Shaders.metal -------------------------------------------------------------------------------- /samples/DrawingFunctions/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/xcode/Info.plist -------------------------------------------------------------------------------- /samples/DrawingFunctions/xcode/MetalDrawing.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/xcode/MetalDrawing.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/DrawingFunctions/xcode/MetalDrawing_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/DrawingFunctions/xcode/MetalDrawing_Prefix.pch -------------------------------------------------------------------------------- /samples/FboBasic/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/include/Resources.h -------------------------------------------------------------------------------- /samples/FboBasic/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/FboBasic/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/FboBasic/src/FboBasicApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/src/FboBasicApp.cpp -------------------------------------------------------------------------------- /samples/FboBasic/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/src/Shaders.metal -------------------------------------------------------------------------------- /samples/FboBasic/xcode/FboBasic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode/FboBasic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/FboBasic/xcode/FboBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode/FboBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/FboBasic/xcode/FboBasic_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode/FboBasic_Prefix.pch -------------------------------------------------------------------------------- /samples/FboBasic/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode/Info.plist -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/FboBasic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/FboBasic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/FboBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/FboBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/FboBasic_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/FboBasic_Prefix.pch -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/FboBasic/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/FboBasic/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/MetalBasic/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/include/Resources.h -------------------------------------------------------------------------------- /samples/MetalBasic/include/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/include/SharedTypes.h -------------------------------------------------------------------------------- /samples/MetalBasic/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/MetalBasic/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/MetalBasic/src/MetalBasicApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/src/MetalBasicApp.cpp -------------------------------------------------------------------------------- /samples/MetalBasic/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/src/Shaders.metal -------------------------------------------------------------------------------- /samples/MetalBasic/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode/Info.plist -------------------------------------------------------------------------------- /samples/MetalBasic/xcode/MetalBasic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode/MetalBasic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/MetalBasic/xcode/MetalBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode/MetalBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/MetalBasic/xcode/MetalBasic_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode/MetalBasic_Prefix.pch -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/MetalBasic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/MetalBasic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/MetalBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/MetalBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/MetalBasic/xcode_ios/MetalBasic_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalBasic/xcode_ios/MetalBasic_Prefix.pch -------------------------------------------------------------------------------- /samples/MetalCamera/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/include/Resources.h -------------------------------------------------------------------------------- /samples/MetalCamera/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/MetalCamera/src/MetalCameraApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/src/MetalCameraApp.cpp -------------------------------------------------------------------------------- /samples/MetalCamera/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/src/Shaders.metal -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/MetalCamera.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/MetalCamera.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/MetalCamera.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/MetalCamera.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/MetalCamera/xcode_ios/MetalCamera_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/MetalCamera/xcode_ios/MetalCamera_Prefix.pch -------------------------------------------------------------------------------- /samples/ParticleSorting/assets/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/assets/particle.png -------------------------------------------------------------------------------- /samples/ParticleSorting/assets/particle_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/assets/particle_square.png -------------------------------------------------------------------------------- /samples/ParticleSorting/include/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/include/SharedData.h -------------------------------------------------------------------------------- /samples/ParticleSorting/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/ParticleSorting/resources/MetalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/resources/MetalIcon.png -------------------------------------------------------------------------------- /samples/ParticleSorting/src/ParticleSortingApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/src/ParticleSortingApp.cpp -------------------------------------------------------------------------------- /samples/ParticleSorting/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/src/Shaders.metal -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode/Info.plist -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode/ParticleSorting.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode/ParticleSorting.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode/ParticleSorting.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode/ParticleSorting.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode/Particles_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode/Particles_Prefix.pch -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/ParticleSorting.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/ParticleSorting.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/ParticleSorting.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/ParticleSorting.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/ParticleSorting/xcode_ios/ParticleSorting_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/ParticleSorting/xcode_ios/ParticleSorting_Prefix.pch -------------------------------------------------------------------------------- /samples/StockShader/assets/cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/assets/cinderblock.png -------------------------------------------------------------------------------- /samples/StockShader/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/include/Resources.h -------------------------------------------------------------------------------- /samples/StockShader/include/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/include/SharedTypes.h -------------------------------------------------------------------------------- /samples/StockShader/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/StockShader/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/StockShader/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/src/Shaders.metal -------------------------------------------------------------------------------- /samples/StockShader/src/StockShaderApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/src/StockShaderApp.cpp -------------------------------------------------------------------------------- /samples/StockShader/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode/Info.plist -------------------------------------------------------------------------------- /samples/StockShader/xcode/StockShader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode/StockShader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/StockShader/xcode/StockShader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode/StockShader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/StockShader/xcode/StockShader_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode/StockShader_Prefix.pch -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/StockShader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/StockShader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/StockShader.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/StockShader.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/StockShader/xcode_ios/StockShader_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/StockShader/xcode_ios/StockShader_Prefix.pch -------------------------------------------------------------------------------- /samples/TextureSlices/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/.gitignore -------------------------------------------------------------------------------- /samples/TextureSlices/assets/cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/assets/cinderblock.png -------------------------------------------------------------------------------- /samples/TextureSlices/assets/cinderblock_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/assets/cinderblock_0.png -------------------------------------------------------------------------------- /samples/TextureSlices/assets/cinderblock_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/assets/cinderblock_1.png -------------------------------------------------------------------------------- /samples/TextureSlices/assets/cinderblock_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/assets/cinderblock_2.png -------------------------------------------------------------------------------- /samples/TextureSlices/assets/cinderblock_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/assets/cinderblock_3.png -------------------------------------------------------------------------------- /samples/TextureSlices/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/include/Resources.h -------------------------------------------------------------------------------- /samples/TextureSlices/include/SharedTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/include/SharedTypes.h -------------------------------------------------------------------------------- /samples/TextureSlices/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/TextureSlices/src/MetalBasicApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/src/MetalBasicApp.cpp -------------------------------------------------------------------------------- /samples/TextureSlices/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/src/Shaders.metal -------------------------------------------------------------------------------- /samples/TextureSlices/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode/Info.plist -------------------------------------------------------------------------------- /samples/TextureSlices/xcode/TextureSlice.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode/TextureSlice.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/TextureSlices/xcode/TextureSlice_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode/TextureSlice_Prefix.pch -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/TextureSlice.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/TextureSlice.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/TextureSlice.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/TextureSlice.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/TextureSlices/xcode_ios/TextureSlice_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/TextureSlices/xcode_ios/TextureSlice_Prefix.pch -------------------------------------------------------------------------------- /samples/VertexBuffer/assets/checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/assets/checker.png -------------------------------------------------------------------------------- /samples/VertexBuffer/assets/checker_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/assets/checker_trans.png -------------------------------------------------------------------------------- /samples/VertexBuffer/assets/texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/assets/texture.jpg -------------------------------------------------------------------------------- /samples/VertexBuffer/assets/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/assets/texture.png -------------------------------------------------------------------------------- /samples/VertexBuffer/assets/texture_trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/assets/texture_trans.png -------------------------------------------------------------------------------- /samples/VertexBuffer/include/SharedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/include/SharedData.h -------------------------------------------------------------------------------- /samples/VertexBuffer/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/VertexBuffer/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/VertexBuffer/resources/MetalIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/resources/MetalIcon.png -------------------------------------------------------------------------------- /samples/VertexBuffer/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/src/Shaders.metal -------------------------------------------------------------------------------- /samples/VertexBuffer/src/VertexBufferApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/src/VertexBufferApp.cpp -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode/Info.plist -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode/VertexBuffer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode/VertexBuffer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode/VertexBuffer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode/VertexBuffer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode/VertexBuffer_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode/VertexBuffer_Prefix.pch -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/VertexBuffer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/VertexBuffer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/VertexBuffer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/VertexBuffer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/VertexBuffer/xcode_ios/VertexBuffer_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VertexBuffer/xcode_ios/VertexBuffer_Prefix.pch -------------------------------------------------------------------------------- /samples/VideoMetalTexture/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/include/Resources.h -------------------------------------------------------------------------------- /samples/VideoMetalTexture/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/VideoMetalTexture/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/src/Shaders.metal -------------------------------------------------------------------------------- /samples/VideoMetalTexture/src/VideoMetalTextureApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/src/VideoMetalTextureApp.mm -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/VideoMetalTexture.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/VideoMetalTexture.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/VideoMetalTexture.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/VideoMetalTexture.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/VideoMetalTexture/xcode_ios/VideoMetalTexture_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/samples/VideoMetalTexture/xcode_ios/VideoMetalTexture_Prefix.pch -------------------------------------------------------------------------------- /src/Batch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/Batch.cpp -------------------------------------------------------------------------------- /src/CameraManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/CameraManager.mm -------------------------------------------------------------------------------- /src/CinderMetalCocoa.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/CinderMetalCocoa.mm -------------------------------------------------------------------------------- /src/Context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/Context.cpp -------------------------------------------------------------------------------- /src/Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/Draw.cpp -------------------------------------------------------------------------------- /src/ImageHelpers.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/ImageHelpers.mm -------------------------------------------------------------------------------- /src/MovieMetal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/MovieMetal.mm -------------------------------------------------------------------------------- /src/RenderCommandBuffer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/RenderCommandBuffer.mm -------------------------------------------------------------------------------- /src/RendererMetal.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/RendererMetal.mm -------------------------------------------------------------------------------- /src/RendererMetalImpl.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/RendererMetalImpl.mm -------------------------------------------------------------------------------- /src/Scope.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/Scope.mm -------------------------------------------------------------------------------- /src/Shader.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/Shader.mm -------------------------------------------------------------------------------- /src/UniformBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/UniformBlock.cpp -------------------------------------------------------------------------------- /src/VertexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/VertexBuffer.cpp -------------------------------------------------------------------------------- /src/apple/Argument.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/Argument.mm -------------------------------------------------------------------------------- /src/apple/BlitEncoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/BlitEncoder.mm -------------------------------------------------------------------------------- /src/apple/CommandBuffer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/CommandBuffer.mm -------------------------------------------------------------------------------- /src/apple/CommandEncoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/CommandEncoder.mm -------------------------------------------------------------------------------- /src/apple/ComputeEncoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/ComputeEncoder.mm -------------------------------------------------------------------------------- /src/apple/ComputePipelineState.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/ComputePipelineState.mm -------------------------------------------------------------------------------- /src/apple/DataBuffer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/DataBuffer.mm -------------------------------------------------------------------------------- /src/apple/DepthState.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/DepthState.mm -------------------------------------------------------------------------------- /src/apple/Library.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/Library.mm -------------------------------------------------------------------------------- /src/apple/MetalGeom.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/MetalGeom.mm -------------------------------------------------------------------------------- /src/apple/RenderEncoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/RenderEncoder.mm -------------------------------------------------------------------------------- /src/apple/RenderPassDescriptor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/RenderPassDescriptor.mm -------------------------------------------------------------------------------- /src/apple/RenderPipelineState.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/RenderPipelineState.mm -------------------------------------------------------------------------------- /src/apple/SamplerState.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/SamplerState.mm -------------------------------------------------------------------------------- /src/apple/TextureBuffer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/src/apple/TextureBuffer.mm -------------------------------------------------------------------------------- /templates/MetalTemplate/src/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/src/Shaders.metal -------------------------------------------------------------------------------- /templates/MetalTemplate/src/_TBOX_PREFIX_App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/src/_TBOX_PREFIX_App.cpp -------------------------------------------------------------------------------- /templates/MetalTemplate/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/template.xml -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-667@2x.png -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/Images.xcassets/LaunchImage.launchimage/Default-736h@3x~iphone.png -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/Info.plist -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/LaunchScreen.xib -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/MetalTemplate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/MetalTemplate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/MetalTemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/MetalTemplate.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /templates/MetalTemplate/xcode_ios/MetalTemplate_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wdlindmeier/Cinder-Metal/HEAD/templates/MetalTemplate/xcode_ios/MetalTemplate_Prefix.pch --------------------------------------------------------------------------------