Skip to content

Instantly share code, notes, and snippets.

@voldern
Created May 10, 2010 15:51
Show Gist options
  • Save voldern/396198 to your computer and use it in GitHub Desktop.
Save voldern/396198 to your computer and use it in GitHub Desktop.
struct PSOutput
{
float4 Color: COLOR;
};
PSOutput psMain(void)
{
PSOutput Output;
Output.Color = float4(1, 0, 0, 0);
return Output;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment