Hi folks,
Can somebody tell me how I can get accurate screen coordinates in a ShaderMaterial fragment shader ?
I’ve tried to create a vec2 vCoords
varying like so :
vec4 vPos = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
vCoords = vPos.xy;
vCoords /= vPos.w;
vCoords = vCoords * 0.5 + 0.5;
But the coordinates I get in the fragment shader seem to be off.
When I multiply and print vCoords fractional part, the offset is obvious :
Here is a fiddle : https://jsfiddle.net/felixmariotto/xcnqguy8/32/
I’m sure I’m missing something obvious, there must be a simple way of getting the screen coordinates ? Any help would be appreciated. I need precise viewport coords to sample from a viewport aligned texture.