aboutsummaryrefslogtreecommitdiff
path: root/pacc/hlsl/color.ps.hlsl
diff options
context:
space:
mode:
Diffstat (limited to 'pacc/hlsl/color.ps.hlsl')
-rw-r--r--pacc/hlsl/color.ps.hlsl23
1 files changed, 23 insertions, 0 deletions
diff --git a/pacc/hlsl/color.ps.hlsl b/pacc/hlsl/color.ps.hlsl
new file mode 100644
index 0000000..5111097
--- /dev/null
+++ b/pacc/hlsl/color.ps.hlsl
@@ -0,0 +1,23 @@
+struct psinput {
+ float4 texcoord: TEXCOORD;
+};
+
+struct psoutput {
+ float4 fragcolor: COLOR;
+};
+
+sampler palette: register(s0);
+sampler tex: register(s1);
+float uni_color: register(c0);
+
+psoutput color(psinput input) {
+ psoutput output;
+ float index = tex2D(tex, input.texcoord.xy).r;
+ if (index > (0.5/255.0)) {
+ index = uni_color;
+ } else {
+ index = 0.5 / 256.0;
+ }
+ output.fragcolor = tex1D(palette, index);
+ return output;
+}