diff --git a/README.md b/README.md
index 02fe05d5..61ef9295 100644
--- a/README.md
+++ b/README.md
@@ -78,7 +78,12 @@ Renders hundreds of meshes using instances with uniforms for e.g. coloring each
### Offscreen rendering
-Uses a separate framebuffer (that is not part of the swap chain) for rendering a 3D scene off screen and blits it into a texture target displayed on a quad. The blit does scaling and (if required) also format conversions.
+Uses a separate framebuffer (that is not part of the swap chain) for rendering a 3D scene off screen and blits it into a texture target displayed on a quad. The blit does scaling and (if required) also format conversions.
+
+### Radial blur
+
+
+Demonstrates basic usage of fullscreen shader effects. The scene is rendered offscreen first, gets blitted to texture target and for the final draw this texture is blended on top of the 3D scene with a radial blur shader applied.
### Spherical environment mapping
diff --git a/screenshots/radial_blur.png b/screenshots/radial_blur.png
new file mode 100644
index 00000000..936d2ce7
Binary files /dev/null and b/screenshots/radial_blur.png differ