View Single Post
07-11-18, 10:39 PM   #4
elcius
A Cliff Giant
AddOn Author - Click to view addons
Join Date: Sep 2011
Posts: 75
Most of the sub pixel issues in wow stem from loss of precision on frame dimensions & position, check the actual position and size of whatever you're having issues with, most likely there will be floating point errors, textures will go through the filter if they are not correctly positioned & scaled.
the issue is most noticeable in text (as text does not filter, it just floors the position).
for example, take the ElvUI options window (or any frame with a lot of text anchored to it) and drag it around slowly, you'll notice the text shifts up & down.
then increase the width & height of the frame by 0.01, and you'll notice the text stops wiggling and all the textures sharpen up.

It's also worth mentioning that you can put your textures and shit directly in WorldFrame to avoid ui scaling.

Last edited by elcius : 07-11-18 at 10:46 PM.
  Reply With Quote