init
This commit is contained in:
commit
2fe6ca2f65
1473 changed files with 251771 additions and 0 deletions
13
gamedata/shaders/r2/stub_default.ps.hlsl
Normal file
13
gamedata/shaders/r2/stub_default.ps.hlsl
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#include "common.hlsli"
|
||||
|
||||
struct p_TL
|
||||
{
|
||||
float2 Tex0 : TEXCOORD0;
|
||||
float4 Color : COLOR;
|
||||
};
|
||||
|
||||
// Pixel
|
||||
float4 main(p_TL I) : COLOR
|
||||
{
|
||||
return tex2D(s_base, I.Tex0) * I.Color;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue