WorldViz User Forum  

Go Back   WorldViz User Forum > Vizard

Reply
 
Thread Tools Rate Thread Display Modes
  #1  
Old 02-23-2005, 01:09 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
OpenGL texture dimensions must be a power of two, unless you use texture rectangles. To remove the fuzziness around the edges try the following:
Code:
tex.wrap(viz.WRAP_S,viz.CLAMP_TO_EDGE)
tex.wrap(viz.WRAP_T,viz.CLAMP_TO_EDGE)
If you don't want your texture to be scaled and you also don't want to resize it to a power of two then you can do the following:
Code:
tex = viz.add('images/stripes7.jpg',viz.TEX_RECT)
xform = viz.Transform()
xform.setScale(width,height)
quad2.texmat(xform)
Replace the variable width and height with the actual width and height of the image.
Reply With Quote
Reply

Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 12:06 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Copyright 2002-2023 WorldViz LLC