DitheringComponent.cs
2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
namespace UnityEngine.PostProcessing
{
public sealed class DitheringComponent : PostProcessingComponentRenderTexture<DitheringModel>
{
static class Uniforms
{
internal static readonly int _DitheringTex = Shader.PropertyToID("_DitheringTex");
internal static readonly int _DitheringCoords = Shader.PropertyToID("_DitheringCoords");
}
public override bool active
{
get
{
return model.enabled
&& !context.interrupted;
}
}
// Holds 64 64x64 Alpha8 textures (256kb total)
Texture2D[] noiseTextures;
int textureIndex = 0;
const int k_TextureCount = 64;
public override void OnDisable()
{
noiseTextures = null;
}
void LoadNoiseTextures()
{
noiseTextures = new Texture2D[k_TextureCount];
for (int i = 0; i < k_TextureCount; i++)
noiseTextures[i] = Resources.Load<Texture2D>("Bluenoise64/LDR_LLL1_" + i);
}
public override void Prepare(Material uberMaterial)
{
float rndOffsetX;
float rndOffsetY;
#if POSTFX_DEBUG_STATIC_DITHERING
textureIndex = 0;
rndOffsetX = 0f;
rndOffsetY = 0f;
#else
if (++textureIndex >= k_TextureCount)
textureIndex = 0;
rndOffsetX = Random.value;
rndOffsetY = Random.value;
#endif
if (noiseTextures == null)
LoadNoiseTextures();
var noiseTex = noiseTextures[textureIndex];
uberMaterial.EnableKeyword("DITHERING");
uberMaterial.SetTexture(Uniforms._DitheringTex, noiseTex);
uberMaterial.SetVector(Uniforms._DitheringCoords, new Vector4(
(float)context.width / (float)noiseTex.width,
(float)context.height / (float)noiseTex.height,
rndOffsetX,
rndOffsetY
));
}
}
}