How to texture package and get max support size.

Anything and everything that's related to OGRE or the wider graphics field that doesn't fit into the other forums.
Post Reply
longer
Kobold
Posts: 37
Joined: Tue Aug 19, 2014 10:46 am
x 5

How to texture package and get max support size.

Post by longer »

When I want to generate a texture for FreeType.I need the max support size.
Texture package can reduce texture nunber.

Code: Select all

1.I need the max support size "getMaxTextureSize = 4096x4096" , such as cegui ogre renderer need this.
2.It's some solution for package small image into a large resource, such as TexturePacker tool can do this for cegui.

Code: Select all

material some_material
{
	technique
	{
		pass
		{
			texture_unit
			{
				texture some_image.png// texture_image? <some_image.png name at TexturePacker>
			}
		}
	}
}
Post Reply