Files
PhysX4.1/physx/samples/sampleframework/media/shaders/fragment/tablet_buttons.cg
2025-11-28 23:13:44 +05:30

14 lines
161 B
Plaintext

struct Fragment
{
float4 color : COLOR0;
};
uniform const float4 diffuseColor;
Fragment fmain()
{
Fragment fout;
fout.color = diffuseColor;
return fout;
}