├── .github └── FUNDING.yml ├── LICENSE.md ├── README.md ├── SynTex.cs ├── TextureSynthesis.csproj ├── images ├── harrison.gif ├── swords.png ├── top.png └── ultima.png ├── samples.xml └── samples ├── bluehalls.png ├── brocks.png ├── cobbles48.png ├── forest1.png ├── forest2.png ├── grass.png ├── grass48.png ├── hills.png ├── lava.png ├── mountains.png ├── redfoam.png ├── sand1.png ├── sand2.png ├── shallows.png ├── skulls.png ├── stones.png ├── strangegrass.png ├── sword.png ├── vines.png ├── wall.png ├── water1.png ├── water2.png ├── water3.png └── water4.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [mxgmn] 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/README.md -------------------------------------------------------------------------------- /SynTex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/SynTex.cs -------------------------------------------------------------------------------- /TextureSynthesis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/TextureSynthesis.csproj -------------------------------------------------------------------------------- /images/harrison.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/images/harrison.gif -------------------------------------------------------------------------------- /images/swords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/images/swords.png -------------------------------------------------------------------------------- /images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/images/top.png -------------------------------------------------------------------------------- /images/ultima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/images/ultima.png -------------------------------------------------------------------------------- /samples.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples.xml -------------------------------------------------------------------------------- /samples/bluehalls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/bluehalls.png -------------------------------------------------------------------------------- /samples/brocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/brocks.png -------------------------------------------------------------------------------- /samples/cobbles48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/cobbles48.png -------------------------------------------------------------------------------- /samples/forest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/forest1.png -------------------------------------------------------------------------------- /samples/forest2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/forest2.png -------------------------------------------------------------------------------- /samples/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/grass.png -------------------------------------------------------------------------------- /samples/grass48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/grass48.png -------------------------------------------------------------------------------- /samples/hills.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/hills.png -------------------------------------------------------------------------------- /samples/lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/lava.png -------------------------------------------------------------------------------- /samples/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/mountains.png -------------------------------------------------------------------------------- /samples/redfoam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/redfoam.png -------------------------------------------------------------------------------- /samples/sand1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/sand1.png -------------------------------------------------------------------------------- /samples/sand2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/sand2.png -------------------------------------------------------------------------------- /samples/shallows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/shallows.png -------------------------------------------------------------------------------- /samples/skulls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/skulls.png -------------------------------------------------------------------------------- /samples/stones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/stones.png -------------------------------------------------------------------------------- /samples/strangegrass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/strangegrass.png -------------------------------------------------------------------------------- /samples/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/sword.png -------------------------------------------------------------------------------- /samples/vines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/vines.png -------------------------------------------------------------------------------- /samples/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/wall.png -------------------------------------------------------------------------------- /samples/water1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/water1.png -------------------------------------------------------------------------------- /samples/water2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/water2.png -------------------------------------------------------------------------------- /samples/water3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/water3.png -------------------------------------------------------------------------------- /samples/water4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mxgmn/TextureSynthesis/HEAD/samples/water4.png --------------------------------------------------------------------------------