├── .config └── dotnet-tools.json ├── .gitignore ├── Content ├── Effect.fx ├── Public Sans.ttf ├── ShaderSampleDX.mgcb ├── ShaderSampleGL.mgcb └── TextFont.spritefont ├── Directory.Build.props ├── Game.cs ├── Program.cs ├── README.md ├── Screenshots ├── ComputeCircles.jpg ├── ComputeGeometryParticles.jpg ├── ComputeParticles.jpg ├── EdgeRounding.jpg ├── EditMesh.jpg ├── ObjectCulling.jpg ├── ParticlesIndirectDraw.jpg ├── PixelSort.jpg ├── TesselationGeometry.jpg └── Texture3D.jpg ├── ShaderSampleDX.csproj └── ShaderSampleGL.csproj /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/.gitignore -------------------------------------------------------------------------------- /Content/Effect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Content/Effect.fx -------------------------------------------------------------------------------- /Content/Public Sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Content/Public Sans.ttf -------------------------------------------------------------------------------- /Content/ShaderSampleDX.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Content/ShaderSampleDX.mgcb -------------------------------------------------------------------------------- /Content/ShaderSampleGL.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Content/ShaderSampleGL.mgcb -------------------------------------------------------------------------------- /Content/TextFont.spritefont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Content/TextFont.spritefont -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Game.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Game.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/ComputeCircles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/ComputeCircles.jpg -------------------------------------------------------------------------------- /Screenshots/ComputeGeometryParticles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/ComputeGeometryParticles.jpg -------------------------------------------------------------------------------- /Screenshots/ComputeParticles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/ComputeParticles.jpg -------------------------------------------------------------------------------- /Screenshots/EdgeRounding.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/EdgeRounding.jpg -------------------------------------------------------------------------------- /Screenshots/EditMesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/EditMesh.jpg -------------------------------------------------------------------------------- /Screenshots/ObjectCulling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/ObjectCulling.jpg -------------------------------------------------------------------------------- /Screenshots/ParticlesIndirectDraw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/ParticlesIndirectDraw.jpg -------------------------------------------------------------------------------- /Screenshots/PixelSort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/PixelSort.jpg -------------------------------------------------------------------------------- /Screenshots/TesselationGeometry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/TesselationGeometry.jpg -------------------------------------------------------------------------------- /Screenshots/Texture3D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/Screenshots/Texture3D.jpg -------------------------------------------------------------------------------- /ShaderSampleDX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/ShaderSampleDX.csproj -------------------------------------------------------------------------------- /ShaderSampleGL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpt-max/MonoGame-Shader-Samples/HEAD/ShaderSampleGL.csproj --------------------------------------------------------------------------------