default_rect.effect 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. #include "color.effect"
  2. uniform float4x4 ViewProj;
  3. uniform texture_rect image;
  4. sampler_state def_sampler {
  5. Filter = Linear;
  6. AddressU = Clamp;
  7. AddressV = Clamp;
  8. };
  9. struct VertInOut {
  10. float4 pos : POSITION;
  11. float2 uv : TEXCOORD0;
  12. };
  13. VertInOut VSDefault(VertInOut vert_in)
  14. {
  15. VertInOut vert_out;
  16. vert_out.pos = mul(float4(vert_in.pos.xyz, 1.0), ViewProj);
  17. vert_out.uv = vert_in.uv;
  18. return vert_out;
  19. }
  20. float4 PSDrawBare(VertInOut vert_in) : TARGET
  21. {
  22. return image.Sample(def_sampler, vert_in.uv);
  23. }
  24. float4 PSDrawD65P3(VertInOut vert_in) : TARGET
  25. {
  26. float4 rgba = image.Sample(def_sampler, vert_in.uv);
  27. rgba.rgb = srgb_nonlinear_to_linear(rgba.rgb);
  28. rgba.rgb = d65p3_to_rec709(rgba.rgb);
  29. return rgba;
  30. }
  31. float4 PSDrawOpaque(VertInOut vert_in) : TARGET
  32. {
  33. return float4(image.Sample(def_sampler, vert_in.uv).rgb, 1.0);
  34. }
  35. float4 PSDrawSrgbDecompress(VertInOut vert_in) : TARGET
  36. {
  37. float4 rgba = image.Sample(def_sampler, vert_in.uv);
  38. rgba.rgb = srgb_nonlinear_to_linear(rgba.rgb);
  39. return rgba;
  40. }
  41. technique Draw
  42. {
  43. pass
  44. {
  45. vertex_shader = VSDefault(vert_in);
  46. pixel_shader = PSDrawBare(vert_in);
  47. }
  48. }
  49. technique DrawD65P3
  50. {
  51. pass
  52. {
  53. vertex_shader = VSDefault(vert_in);
  54. pixel_shader = PSDrawD65P3(vert_in);
  55. }
  56. }
  57. technique DrawOpaque
  58. {
  59. pass
  60. {
  61. vertex_shader = VSDefault(vert_in);
  62. pixel_shader = PSDrawOpaque(vert_in);
  63. }
  64. }
  65. technique DrawSrgbDecompress
  66. {
  67. pass
  68. {
  69. vertex_shader = VSDefault(vert_in);
  70. pixel_shader = PSDrawSrgbDecompress(vert_in);
  71. }
  72. }