render.PushFilterMin
From Garry's Mod
render.PushFilterMin( )
Contents |
Description
Pushes a texture filter onto the minification texture filter stack.
Arguments
number texFilterType
The texture filter type, see TEXFILTER_ Enums
Examples
Example
Anisotropic Filtering (This is not antialiasing)
render.PushFilterMag( TEXFILTER.ANISOTROPIC ) render.PushFilterMin( TEXFILTER.ANISOTROPIC ) -- Render stuff here render.PopFilterMag() render.PopFilterMin()