Skip to content

Aryan-Satpathy/Shaders-Sandbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shaders Sandbox

Just experimenting with Unity shaders.

Shaders used in the project :

  • Compute Shader
  • Image Effect Shader

Compute Shaders

These do not really render anything, these are just code that run on GPU in parallel processes. Could be used to do performance heavy tasks in GPU, or could be used to just, render.

In this project, I have implemented a very basic ray tracing with reflections using Compute Shader. Lights are yet to be added.

Image Effect Shaders

As the name suggests, it applies effects on images. It is mostly used as Post Processing. After all rendering is complete to render an image, the shader is applied on the image and a new output image is generated. This new output image is now rendered. It usually involves built-in unity function OnRenderImage() and the source RenderTexture is passed on to image shader and its output is set as destionation RenderTexture of the function.

In this project, I have written one for Anti Aliasing and one for a kind of colorful fog effect. I am still working on the fog effect.

Ray Tracing | Compute Shader


Figure 1: 10 spheres, 10 number of bounces.


Figure 2: Reflections.

Spheres are not actually in the scenes, they are just rendered by the shader, there are no sphere meshes.

Anti Aliasing | Image Effect Shader


Figure 1: Ray tracing scene without Anti Aliasing.


Figure 2: Ray tracing scene with Anti Aliasing.

Zoom in to clearly see the effect.

Fog | Image Effect Shader


Figure 1: Scene.


Figure 2: In playmode, when looked from some distance.


Figure 3: In playmode, when we come closer to the objects.

Yeah I like pink a bit too much.

About

Experimenting with Unity and HLSL shaders

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published