solid.effect 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. uniform float4x4 ViewProj;
  2. uniform float4 color = {1.0, 1.0, 1.0, 1.0};
  3. uniform float4 randomvals1;
  4. uniform float4 randomvals2;
  5. uniform float4 randomvals3;
  6. struct SolidVertInOut {
  7. float4 pos : POSITION;
  8. };
  9. SolidVertInOut VSSolid(SolidVertInOut vert_in)
  10. {
  11. SolidVertInOut vert_out;
  12. vert_out.pos = mul(float4(vert_in.pos.xyz, 1.0), ViewProj);
  13. return vert_out;
  14. }
  15. float4 PSSolid(SolidVertInOut vert_in) : TARGET
  16. {
  17. return color;
  18. }
  19. float rand(float4 pos, float4 rand_vals)
  20. {
  21. return 0.5 + 0.5 * frac(sin(dot(pos.xy, float2(rand_vals.x, rand_vals.y))) * rand_vals.z);
  22. }
  23. float4 PSRandom(SolidVertInOut vert_in) : TARGET
  24. {
  25. return float4(rand(vert_in.pos, randomvals1),
  26. rand(vert_in.pos, randomvals2),
  27. rand(vert_in.pos, randomvals3),
  28. 1.0);
  29. }
  30. struct SolidColoredVertInOut {
  31. float4 pos : POSITION;
  32. float4 color : COLOR;
  33. };
  34. SolidColoredVertInOut VSSolidColored(SolidColoredVertInOut vert_in)
  35. {
  36. SolidColoredVertInOut vert_out;
  37. vert_out.pos = mul(float4(vert_in.pos.xyz, 1.0), ViewProj);
  38. vert_out.color = vert_in.color;
  39. return vert_out;
  40. }
  41. float4 PSSolidColored(SolidColoredVertInOut vert_in) : TARGET
  42. {
  43. return vert_in.color * color;
  44. }
  45. technique Solid
  46. {
  47. pass
  48. {
  49. vertex_shader = VSSolid(vert_in);
  50. pixel_shader = PSSolid(vert_in);
  51. }
  52. }
  53. technique SolidColored
  54. {
  55. pass
  56. {
  57. vertex_shader = VSSolidColored(vert_in);
  58. pixel_shader = PSSolidColored(vert_in);
  59. }
  60. }
  61. technique Random
  62. {
  63. pass
  64. {
  65. vertex_shader = VSSolid(vert_in);
  66. pixel_shader = PSRandom(vert_in);
  67. }
  68. }