Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SamplingResources.hlsl 443B

1234567891011121314
  1. #ifndef _SAMPLING_SAMPLINGRESOURCES_HLSL_
  2. #define _SAMPLING_SAMPLINGRESOURCES_HLSL_
  3. #ifdef QRNG_METHOD_SOBOL_BLUE_NOISE
  4. Texture2D<float> _SobolScramblingTile;
  5. Texture2D<float> _SobolRankingTile;
  6. Texture2D<float2> _SobolOwenScrambledSequence;
  7. #endif
  8. #if defined(QRNG_METHOD_SOBOL) || defined(QRNG_METHOD_GLOBAL_SOBOL_BLUE_NOISE)
  9. StructuredBuffer<uint> _SobolMatricesBuffer;
  10. #endif
  11. #endif