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,14 @@
struct FragmentParameters
{
#if !defined(GLSL_COMPILER)
half4 screenSpacePosition : SV_POSITION;
#else
half4 screenSpacePosition : POSITION;
#endif
half4 color : COLOR;
};
half4 fmain(FragmentParameters params) : COLOR0
{
return params.color;
}