ASUS Vivobook X BAPE

Tarkov’s iron sights and red dots are notoriously misaligned or blurry. XhairFX allows you to place a crisp, bright dot directly over your screen center, bypassing poor sight RNG. (Note: Be aware of BattlEye policies).

float sdCircle(float2 p, float r) 
  return length(p) - r;
float alpha = smoothstep(aaWidth, -aaWidth, sdCircle(p - center, radius) + thickness/2.0);
float segDist(float2 p, float2 a, float2 b) 
  float2 pa = p - a, ba = b - a;
  float h = clamp(dot(pa,ba)/dot(ba,ba), 0.0, 1.0);
  return length(pa - ba*h);

XHairFX is a specialized ReShade shader (part of the qUINT suite) designed to draw custom crosshairs directly on the screen via post-processing.

1 comment