View Single Post
  #7  
Old 06-24-2009, 11:16 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Also, you should disable mipmaps on your texture if you don't need them. In most cases this will increase texture upload time.
Code:
#Use non-mipmapped linear filtering
texture = viz.addTexture(imagelist.next(), resizeNPOT=False, filter=viz.LINEAR)
Reply With Quote