Please provide any additional information below.
DrawableObject.java: forceDrawType function
public void forceDrawType(int drawType) {
if(drawType == DrawPriority.VBO) {
if(Graphics.isSupportsVBO()) {
Debug.warning("Tried forcing DrawableObject to VBO, device does not support it");
drawType = DrawPriority.NORMAL;
}
}
forceDrawType = drawType;
}
if(Graphics.isSupportsVBO()) , I think it's wrong, should be
if(!Graphics.isSupportsVBO())
Original issue reported on code.google.com by rayjun...@gmail.com on 8 Jul 2010 at 8:53
Original issue reported on code.google.com by
rayjun...@gmail.com
on 8 Jul 2010 at 8:53