Reorganize assets

This commit is contained in:
ReenigneArcher
2022-05-05 22:17:07 -04:00
parent 5135c16bda
commit 8b86abfceb
59 changed files with 271 additions and 278 deletions

View File

@@ -0,0 +1,14 @@
Texture2D image : register(t0);
SamplerState def_sampler : register(s0);
struct PS_INPUT
{
float4 pos : SV_POSITION;
float2 tex : TEXCOORD;
};
float4 main_ps(PS_INPUT frag_in) : SV_Target
{
return image.Sample(def_sampler, frag_in.tex, 0);
}