mirror of
https://github.com/celisej567/cool-source-archive.git
synced 2026-01-05 22:10:07 +03:00
12 lines
159 B
Plaintext
12 lines
159 B
Plaintext
#include "common_ps_fxc.h"
|
|
|
|
struct PS_INPUT
|
|
{
|
|
float4 vPos : SV_POSITION;
|
|
float4 vColor : COLOR;
|
|
};
|
|
|
|
float4 main(PS_INPUT i) : SV_TARGET
|
|
{
|
|
return i.vColor;
|
|
} |