Forums » Linux
Anti-aliasing
Is there any way to turn on anti-aliasing in the linux/openGL version of V-O? I could turn it on system-wide using the nVidia control panel, I guess, but I'd rather do it at an application level.
Thanks for any info.
Thanks for any info.
nope
EDIT:
But you can create a shellscript that sets it up for you.
Create a textfile with the contents:
export __GL_FSAA_MODE=<somenumber>
vendetta
in /usr/bin and call it something nice, like "vendetta-fsaa", chmod +x it and run that instead of vendetta
See /usr/share/doc/NVIDIA_GLX-1.0/README for the correct values.
EDIT:
But you can create a shellscript that sets it up for you.
Create a textfile with the contents:
export __GL_FSAA_MODE=<somenumber>
vendetta
in /usr/bin and call it something nice, like "vendetta-fsaa", chmod +x it and run that instead of vendetta
See /usr/share/doc/NVIDIA_GLX-1.0/README for the correct values.
Cool, thanks!
Experiment a little to find the best performance. On my current system I seem to get the best results from FSAA=2 and ANISO=1. Looks great, performs great.