This commit is contained in:
Vasily Petrov 2026-06-18 01:18:29 +03:00
commit 2fe6ca2f65
1473 changed files with 251771 additions and 0 deletions

View file

@ -0,0 +1,25 @@
#include "common_iostructs.hlsli"
float4 screen_res; // Screen resolution (x-Width,y-Height, zw - 1/resolution)
// Vertex
v2p_build main(v_build I)
{
v2p_build O;
{
I.P.xy += 0.5f; // Bugs with rasterizer??? Possible float-pixel shift.
// O.HPos.x = I.P.x/1024 * 2 - 1;
// O.HPos.y = (I.P.y/768 * 2 - 1)*-1;
O.HPos.x = I.P.x * screen_res.z * 2 - 1;
O.HPos.y = (I.P.y * screen_res.w * 2 - 1) * -1;
O.HPos.zw = I.P.zw;
}
O.Tex0 = I.Tex0;
O.Tex1 = I.Tex1;
O.Tex2 = I.Tex2;
O.Tex3 = I.Tex3;
return O;
}