PDA

View Full Version : Which RenderingMode ???


Evil of Devil
22-08-2004, 15:46
I've got a short question about the different renderingmodes in cs.
The standart mode ist GL_LINEAR_MIPMAP_NEAREST.
Is there a better mode, maybe GL_LINEAR_MIPMAP_LINEAR or not.
The command for it is gl_texturemode.

thanks in advance.

dstruct2k
22-08-2004, 20:03
I didn't think you were able to change the mode... I thought it was locked.

Evil of Devil
23-08-2004, 19:38
Yes, you are.
And now I know the best mode, it's GL_LINEAR_MIPMAP_LINEAR.
But now I've another question. :(
How can I run my autoexec.cfg? How to link to this file?

MusicMan
24-08-2004, 13:28
try making a line at the bottom of your config.cfg saying "exec autoexec.cfg" without the quotes.

Hope this helps ;)

dstruct2k
25-08-2004, 07:35
Not config.cfg.... Steam did away with autoexec's (so I've been told, mine works...) so use "userconfig.cfg"

Exilibur
25-08-2004, 16:08
gl_texturemode has the following settings:
GL_NEAREST (worst)
GL_NEAREST_MIPMAP_NEAREST (second worst)
GL_LINEAR (medium)
GL_LINEAR_MIPMAP_NEAREST (second best)
GL_LINEAR_MIPMAP_LINEAR (best).

I've made a little script that makes you able to change the texturemode fairly easy:

alias syn "syn1"
alias syn1 "gl_texturemode gl_nearest; alias syn syn2"
alias syn2 "gl_texturemode GL_NEAREST_MIPMAP_NEAREST; alias syn syn3"
alias syn3 "gl_texturemode GL_linear; alias syn syn4"
alias syn4 "gl_texturemode GL_linear_mipmap_nearest; alias syn syn5"
alias syn5 "gl_texturemode GL_linear_mipmap_linear; alias syn syn1"

bind "?" "syn"

alias's in autoexec.cfg and binds in config.cfg