🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Graphics Programming weekly - Issue 69 — January 20, 2019

posted in jendrikillner
Published January 20, 2019 Imported
Advertisement
  • describes lookup table based (LUT) color grading in LDR color space
  • shows how to represent the 3D color space in a 2D image
  • LUT is embedded into the picture during color grading and later used to apply the transform at runtime
  • walkthrough of the implementation using Unity
colorgrading_lut.png

  • explains how to port an existing iOS OpenGL application to use Metal
  • shows everything required for a spinning 3D cube on screen
  • including shader authoring, render pipeline creation, uploading of data from the CPU to the GPU and draw call execution
  • providing resources for future steps at the end of the article
OpenGLMetal.png

  • implementation of ray marching
  • renders the back faces of the bounding volume to determine on which pixels raymarching needs to be done
  • simplified absorption model, ignoring the scattering effects
  • the vertex shader is used to calculate the ray direction and pass it to the pixel-shader
  • lookup texture is used to color to the greyscale information from the 3D volume texture
volume_rendering_webgl.png

  • cellular noise created from a quadtree grid structure
  • presents a method that calculates the optimal order in which neighboring cells need to be visited in 2D
  • introduces how to generalize this into higher dimensions and provides a python script can generate lookup tables to store the optimal visit order
  • the technique reduces computation time by around 15%
cellular_noise.png

  • explains how the distant rain shafts in The Witcher 3 are implemented
  • large cylinders in the distant use noise textures with UV distortion
  • reading back the scene depth buffer is used to fade out the effect on distance objects
  • reverse engineered source code provided
rain_shafts.png

  • the first book on raytracing “An Introduction to Ray Tracing” from 1989 is now freely available as PDF
raytracing_book.jpg

  • full path tracing implementation of Quake 2
  • implemented Vulkan and the RTX raytracing extension
  • uses an adaptive temporal filter for light transport paths to reduce noise
q2vkpt_0001.jpg

  • start of weekly curation of tweets about 3D (technical) art, shaders, and VFX
tech_art_weekly.png

Read more

0 likes 0 comments

Comments

Nobody has left a comment. You can be the first!
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement