This commit is contained in:
2025-11-28 23:13:44 +05:30
commit a3a8e79709
7360 changed files with 1156074 additions and 0 deletions

View File

@ -0,0 +1,23 @@
struct FragmentParameters
{
float4 worldSpacePosition : TEXCOORD4;
float2 texcoord0 : TEXCOORD0;
half4 color : COLOR;
};
struct Fragment
{
half4 color : COLOR0;
};
//uniform const sampler2D diffuseTexture;
Fragment fmain(FragmentParameters params)
{
Fragment fout;
// half4 diffuseTextureColor = tex2D(diffuseTexture, params.texcoord0.xy);
// fout.color = diffuseTextureColor * params.color;
fout.color = params.color;
return fout;
}