mirror of
https://github.com/open-goal/jak-project
synced 2026-08-06 18:03:30 -04:00
11 lines
194 B
HLSL
Vendored
Generated
11 lines
194 B
HLSL
Vendored
Generated
|
|
#include "overlay.hlsli"
|
|
|
|
Texture2D<float4> t0 : register(t0, space2);
|
|
SamplerState s0 : register(s0, space2);
|
|
|
|
float4 main(VSOutput input) : SV_Target0
|
|
{
|
|
return t0.Sample(s0, input.uv);
|
|
}
|