String szText = super.getInfo( obj );
szText = insertSectionBreak( szText );
szText += "Rendering Attributes\r\n";
RenderingAttributes renderingAttribs = (RenderingAttributes) obj;
szText += "Alpha Test Function: " + renderingAttribs.getAlphaTestFunction() + "\r\n";
szText += "Alpha Test Value: " + renderingAttribs.getAlphaTestValue() + "\r\n";
szText += "Depth Buffer Enable: " + renderingAttribs.getDepthBufferEnable() + "\r\n";
szText += "Depth Buffer Write Enable: " + renderingAttribs.getDepthBufferWriteEnable() + "\r\n";
return szText;