diff options
author | WlodekM <[email protected]> | 2024-06-16 10:35:45 +0300 |
---|---|---|
committer | WlodekM <[email protected]> | 2024-06-16 10:35:45 +0300 |
commit | abef6da56913f1c55528103e60a50451a39628b1 (patch) | |
tree | b3c8092471ecbb73e568cd0d336efa0e7871ee8d /misc/xbox360/ps_textured.hlsl |
initial commit
Diffstat (limited to 'misc/xbox360/ps_textured.hlsl')
-rw-r--r-- | misc/xbox360/ps_textured.hlsl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/misc/xbox360/ps_textured.hlsl b/misc/xbox360/ps_textured.hlsl new file mode 100644 index 0000000..e3f0b22 --- /dev/null +++ b/misc/xbox360/ps_textured.hlsl @@ -0,0 +1,10 @@ +sampler s; + +struct INPUT_VERTEX { + float4 col : COLOR0; + float2 uv : TEXCOORD0; +}; + +float4 main(INPUT_VERTEX input) : COLOR0 { + return tex2D(s, input.uv) * input.col; +} \ No newline at end of file |