- Home /
Optimizing noise-based pixelated shader.
I currently have a working shader that generates noise-based textures and posterizes the uv lookups on each texel (multiplying by arbitrary value + rounding) to get a pixelated look.
I guess the optimal way to go would be generating a texture on the fly on the minimal needed resolution and then filtering that result with a nearest filter at full resolution, instead of computing the whole pixel shader for each texel as I´m doing right now. Would that be possible to do in a single shader? (I´m using Unity Indie) Thanks in advance!
Your answer
Follow this Question
Related Questions
Cheap options for making diffuse-lit objects "interesting" 1 Answer
Shaders - changing the vertex color via script 1 Answer
How to reduce shader compilation time on android devices 0 Answers
Issue while using shader for instantiating a baked-lighting prefab 0 Answers
What is more optimized: use manually the shader variables or declare it and then use 1 Answer