mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp
synced 2026-09-01 18:19:52 -04:00
Integrated RmlUi, fully moved over to cmake
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
SamplerState gSampler : register(s1, space0);
|
||||
Texture2D<float4> gTexture : register(t0, space1);
|
||||
|
||||
void PSMain(
|
||||
out float4 resultColor : SV_TARGET
|
||||
in float4 iColor : COLOR,
|
||||
in float2 iUV : TEXCOORD,
|
||||
out float4 oColor : SV_TARGET
|
||||
)
|
||||
{
|
||||
resultColor = float4(1,0,0,1);
|
||||
oColor = gTexture.SampleLevel(gSampler, iUV, 0) * iColor;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user