var fDesc=new Array();
fDesc[0] = "Standalone tool which converts Khronos COLLADA Digital Asset geometry and animations into the optimised POWERVR POD file format.
Main features:
-Windows, Linux and MacOS support
-Optimises data order for POWERVR MBX or POWERVR SGX
-Exports to POWERVR object data (POD) format
-Supports binary and C header formats
-Optimised data storage including “instancing”
-Key frame & skinning animation support
-Matrix palette batching
-Camera & light information and animation
-Loader source code provided in SDK";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}