$pointsamplemagfilter: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (Added note about $pointsamplemagfilter not working on $bumpmap)
mNo edit summary
Line 1: Line 1:
{{lang|$PointSampleMagFilter|title=<code>$pointsamplemagfilter</code>}}
[[File:$pointsamplemagfilter.png|thumb|right|Example of $pointsamplemagfilter set to 1 and 0.]]
[[File:$pointsamplemagfilter.png|thumb|right|Example of $pointsamplemagfilter set to 1 and 0.]]


{{Shaderparam|$pointsamplemagfilter|shader1=LightmappedGeneric|game=Counter-Strike: Global Offensive}} It disables texture filtering on a material if the texture resolution is bigger than the space it occupies onscreen, and linearly interpolated (smooth) if its smaller, and will use mipmaps.
'''$pointsamplemagfilter''' is a [[material]] [[shader]] parameter available in {{csgo}} [[Counter-Strike: Global Offensive]] for <code>[[LightmappedGeneric]]</code>. It disables texture filtering on a material if the texture resolution is bigger than the space it occupies onscreen, and linearly interpolated (smooth) if its smaller, and will use [[MIP_Mapping|mipmaps]].


This makes it pixelated when near the texture, but smooth when far way, and will not produce [https://en.wikipedia.org/wiki/Moir%C3%A9_pattern moiré patterns] when viewed at grazing angles or from distance, compared to just enabling Point Sampling flag in a material's [[VTF]].


This makes it pixelated when near the texture, but smooth when far way, and will not produce [https://en.wikipedia.org/wiki/Moir%C3%A9_pattern moiré patterns] when viewed at grazing angles or from distance, compared to just enabling Point Sampling flag in a material's [[Valve_Texture_Format|VTF]].
{{Note|Not compatible with blended displacement materials.}}
{{Note|A similar effect can be achieved by enabling Point Sampling in a material's [[Valve_Texture_Format|VTF]] file. ( Which ''does'' work with blended materials, use this instead! )}}
{{Note|Effect only works on <code>[[$basetexture]]</code> and will not have the desired effect on the <code>[[$bumpmap]]</code>.}}
{{Bug|This parameter may not work on older hardware.}}
[[File:Difference.png|none|thumb|left|720px|Difference side by side, '''$pointsamplemagfilter''' (left) is pixelated and looks good in the distance as well]]


{{note|Not compatible with blended displacement materials.}}
==VMT syntax example==
{{note|A similar effect can be achieved by enabling Point Sampling in a material's [[VTF]] file. ( Which <i>does</i> work with blended materials, use this instead! )}}
$pointsamplemagfilter <[[Boolean|bool]]>
{{note|Effect only works on $basetexture and will not have the desired effect on the $bumpmap .}}
{{bug|This parameter may not work on older hardware.}}


 
[[Category:List of Shader Parameters]]
 
[[Category:Glossary]]
 
[[File:Difference.png|thumb|center|720px|Difference side by side, $pointsamplemagfilter (left) is pixelated and looks good in the distance as well]]
 
 
 
== VMT syntax example ==
 
$pointsamplemagfilter <[[bool]]>
 
[[Category:List of Shader Parameters|P]]

Revision as of 08:24, 5 June 2021

English (en)Translate (Translate)
Example of $pointsamplemagfilter set to 1 and 0.

$pointsamplemagfilter is a material shader parameter available in Counter-Strike: Global Offensive Counter-Strike: Global Offensive for LightmappedGeneric. It disables texture filtering on a material if the texture resolution is bigger than the space it occupies onscreen, and linearly interpolated (smooth) if its smaller, and will use mipmaps.


This makes it pixelated when near the texture, but smooth when far way, and will not produce moiré patterns when viewed at grazing angles or from distance, compared to just enabling Point Sampling flag in a material's VTF.

Note.pngNote:Not compatible with blended displacement materials.
Note.pngNote:A similar effect can be achieved by enabling Point Sampling in a material's VTF file. ( Which does work with blended materials, use this instead! )
Note.pngNote:Effect only works on $basetexture and will not have the desired effect on the $bumpmap.
Icon-Bug.pngBug:This parameter may not work on older hardware.  [todo tested in ?]
Difference side by side, $pointsamplemagfilter (left) is pixelated and looks good in the distance as well

VMT syntax example

$pointsamplemagfilter <bool>