├── .gitignore ├── Images ├── Preview.JPG └── Project.JPG ├── README.md ├── VFRZInstancing.sln └── VFRZInstancing ├── Content ├── Arial.spritefont ├── Content.mgcb ├── Macros.fxh ├── instance_effect.fx ├── tiles30x64.png └── tiles32x64.png ├── FrameCounter.cs ├── Game1.cs ├── HelperObjects └── Camera.cs ├── Icon.bmp ├── Icon.ico ├── Instancing ├── Byte4.cs ├── GeometryData.cs └── Instances.cs ├── Program.cs ├── ShaderInCSharpImpl.cs ├── TileMap.cs ├── VFRZInstancing - Backup.csproj ├── VFRZInstancing.csproj └── app.manifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Preview.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/Images/Preview.JPG -------------------------------------------------------------------------------- /Images/Project.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/Images/Project.JPG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/README.md -------------------------------------------------------------------------------- /VFRZInstancing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing.sln -------------------------------------------------------------------------------- /VFRZInstancing/Content/Arial.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Content/Arial.spritefont -------------------------------------------------------------------------------- /VFRZInstancing/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Content/Content.mgcb -------------------------------------------------------------------------------- /VFRZInstancing/Content/Macros.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Content/Macros.fxh -------------------------------------------------------------------------------- /VFRZInstancing/Content/instance_effect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Content/instance_effect.fx -------------------------------------------------------------------------------- /VFRZInstancing/Content/tiles30x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Content/tiles30x64.png -------------------------------------------------------------------------------- /VFRZInstancing/Content/tiles32x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Content/tiles32x64.png -------------------------------------------------------------------------------- /VFRZInstancing/FrameCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/FrameCounter.cs -------------------------------------------------------------------------------- /VFRZInstancing/Game1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Game1.cs -------------------------------------------------------------------------------- /VFRZInstancing/HelperObjects/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/HelperObjects/Camera.cs -------------------------------------------------------------------------------- /VFRZInstancing/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Icon.bmp -------------------------------------------------------------------------------- /VFRZInstancing/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Icon.ico -------------------------------------------------------------------------------- /VFRZInstancing/Instancing/Byte4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Instancing/Byte4.cs -------------------------------------------------------------------------------- /VFRZInstancing/Instancing/GeometryData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Instancing/GeometryData.cs -------------------------------------------------------------------------------- /VFRZInstancing/Instancing/Instances.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Instancing/Instances.cs -------------------------------------------------------------------------------- /VFRZInstancing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/Program.cs -------------------------------------------------------------------------------- /VFRZInstancing/ShaderInCSharpImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/ShaderInCSharpImpl.cs -------------------------------------------------------------------------------- /VFRZInstancing/TileMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/TileMap.cs -------------------------------------------------------------------------------- /VFRZInstancing/VFRZInstancing - Backup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/VFRZInstancing - Backup.csproj -------------------------------------------------------------------------------- /VFRZInstancing/VFRZInstancing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/VFRZInstancing.csproj -------------------------------------------------------------------------------- /VFRZInstancing/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PodeCaradox/MonoGame-HardwareInstancing/HEAD/VFRZInstancing/app.manifest --------------------------------------------------------------------------------