Add separate cl_movement cvar to enable/disable reporting input sequences to DP servers (which use different pathways). Does not affect other protocols. This is separate from cl_nopred but will usually have the same result in the long run. Fixed movevalues for DPP7 clients, if they try using prediction they should now (mostly) get the same values that DP normally uses for QW servers. Reworked sky overrides somewhat. Now uses skyboxes where possible. Fixed dpcompat_makeshitup a little, for better compat. Fixed echo $foo$bar not exanding bar. Try to fix the meanings of vid_hardwaregamma. Fixes for builtins/features/etc that apparently only xonotic uses. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5143 fc73d0e0-1445-4013-8a0c-d673dee63da5
32 lines
No EOL
554 B
HLSL
32 lines
No EOL
554 B
HLSL
struct a2v
|
|
{
|
|
float4 pos: POSITION;
|
|
};
|
|
struct v2f
|
|
{
|
|
#ifndef FRAGMENT_SHADER
|
|
float4 pos: POSITION;
|
|
#endif
|
|
float3 texc: TEXCOORD0;
|
|
};
|
|
|
|
#ifdef VERTEX_SHADER
|
|
float3 e_eyepos;
|
|
float4x4 m_modelviewprojection;
|
|
v2f main (a2v inp)
|
|
{
|
|
v2f outp;
|
|
outp.pos = mul(m_modelviewprojection, inp.pos);
|
|
outp.texc= inp.pos - e_eyepos;
|
|
outp.texc.y = -outp.texc;
|
|
return outp;
|
|
}
|
|
#endif
|
|
|
|
#ifdef FRAGMENT_SHADER
|
|
sampler s_reflectcube;
|
|
float4 main (v2f inp) : COLOR0
|
|
{
|
|
return texCUBE(s_reflectcube, inp.texc);
|
|
}
|
|
#endif |