Advertisement
Zgragselus

VoxelMipmap.hlsl

Feb 10th, 2022
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. cbuffer InputDimensions : register(b0)
  2. {
  3. uint3 dimensions;
  4. }
  5.  
  6. cbuffer InputMiplevels : register(b1)
  7. {
  8. uint srcMiplevel;
  9. uint miplevels;
  10. float texelSize;
  11. }
  12.  
  13. SamplerState srcSampler : register(s0);
  14. Texture3D<float4> srcLevel : register(t0);
  15. RWTexture3D<float4> mipLevel1 : register(u0);
  16.  
  17. groupshared float4 tmp[8];
  18.  
  19. void StoreColor(uint idx, float4 color)
  20. {
  21. tmp[idx] = color;
  22. }
  23.  
  24. float4 LoadColor(uint idx)
  25. {
  26. return tmp[idx];
  27. }
  28.  
  29. float HasVoxel(float4 color)
  30. {
  31. return color.a > 0.0f ? 1.0f : 0.0f;
  32. }
  33.  
  34. // Naive version to generate single mipmap level from the previous one
  35. //
  36. // Runs in 2x2x2 workgroup
  37. [numthreads(2, 2, 2)]
  38. void GenerateMipmaps(uint GI : SV_GroupIndex, uint3 DTid : SV_DispatchThreadID)
  39. {
  40. // Each thread in workgroup loads single voxel and stores it on groupshared memory
  41. float4 src0;
  42. float4 src1;
  43. float4 src2;
  44. float4 src3;
  45. float4 src4;
  46. float4 src5;
  47. float4 src6;
  48. float4 src7;
  49. float3 uvw = (DTid.xyz + 0.5f) * texelSize;
  50. src0 = srcLevel.SampleLevel(srcSampler, uvw, (float)srcMiplevel);
  51. StoreColor(GI, src0);
  52. GroupMemoryBarrierWithGroupSync();
  53.  
  54. // For first thread in workgroup only
  55. if (GI == 0)
  56. {
  57. // Load all 8 colors from shared memory
  58. src1 = LoadColor(GI + 0x01);
  59. src2 = LoadColor(GI + 0x02);
  60. src3 = LoadColor(GI + 0x03);
  61. src4 = LoadColor(GI + 0x04);
  62. src5 = LoadColor(GI + 0x05);
  63. src6 = LoadColor(GI + 0x06);
  64. src7 = LoadColor(GI + 0x07);
  65.  
  66. // Perform mipmapping function
  67. float div = HasVoxel(src0) + HasVoxel(src1) + HasVoxel(src2) + HasVoxel(src3) + HasVoxel(src4) + HasVoxel(src5) + HasVoxel(src6) + HasVoxel(src7);
  68.  
  69. if (div == 0.0f)
  70. {
  71. src0 = 0.0f;
  72. }
  73. else
  74. {
  75. src0 = (src0 + src1 + src2 + src3 + src4 + src5 + src6 + src7) / div;
  76. }
  77.  
  78. // Store value
  79. mipLevel1[DTid / 2] = src0;
  80. }
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement