12 lines
173 B
HLSL
12 lines
173 B
HLSL
#include "common/common.hlsl"
|
|
|
|
struct VSOutput
|
|
{
|
|
float4 pos : SV_POSITION;
|
|
float4 color : COLOR;
|
|
};
|
|
|
|
float4 main(VSOutput input) : SV_TARGET
|
|
{
|
|
return input.color;
|
|
} |