aboutsummaryrefslogtreecommitdiff
path: root/pacc/hlsl/fill.ps.hlsl
diff options
context:
space:
mode:
Diffstat (limited to 'pacc/hlsl/fill.ps.hlsl')
-rw-r--r--pacc/hlsl/fill.ps.hlsl15
1 files changed, 15 insertions, 0 deletions
diff --git a/pacc/hlsl/fill.ps.hlsl b/pacc/hlsl/fill.ps.hlsl
new file mode 100644
index 0000000..9939553
--- /dev/null
+++ b/pacc/hlsl/fill.ps.hlsl
@@ -0,0 +1,15 @@
+struct psinput {
+ float4 texcoord: TEXCOORD;
+};
+
+struct psoutput {
+ float4 fragcolor: COLOR;
+};
+
+sampler palette: register(s0);
+
+psoutput fill(psinput input) {
+ psoutput output;
+ output.fragcolor = tex1D(palette, input.texcoord.x);
+ return output;
+}