🎉 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 37 — May 6, 2018

posted in jendrikillner
Published May 06, 2018 Imported
Advertisement
  • how the stylized vfx in Rime was implemented
  • short overview of fire and smoke effect
  • in-depth overview of the water rendering implementation
thumbnail_youtube_01_forward.png

  • explanation how to query reflection information from SPIR-V shader
  • brief overview of the the SPIR-V type system

  • explanation of the implementation of Pixel Projected Reflections using vulkan
  • supports approximation of normal maps and roughness
  • comparison against brute force ray tracing implementation (image quality and performance)
ppssr.png

  • how to implement a ray tracer using a compute shader in unity
  • features supported: sky box, ground plane, spheres, reflections, directional light with hard shadows and a basic material system
  • simple temporal anti-aliasing solution
gpu-rt-result-close.png

  • shows the steps leading up the final implementation
  • uses a fixed weight for all contributing samples. If sample doesn’t contribute, blend in the current average color instead
  • clamping sample size when sample is further away then the center sample. This makes sure out of focus background do not blur into in-focus foreground objects
depth_of_field.png

  • texture compression library in just 500 lines of C code + Zstd
  • zpng compressing is quicker, takes 6% of the time and output size of the image is 66% compared to the png reference

  • presentations from the Vulkan Montreal dev day
  • including updates about HLSL in Vulkan and descriptor indexing
2018-vulkan-developer-day-banner.jpg

  • comparison of Draco and mesh optimizer output in regards to size and decoding time
  • Draco size compression is mesh dependent, can be larger. Always a lot slower to decode

  • most of the AMD presentations from GDC have now been uploaded
gdc_header.png

  • examples for arguments buffer have been published
  • allow the grouping of resources and constants into a single object that can be bound as a single unit
argument_buffer.png

  • tool that allows simplifications for static VR environments
  • takes RGB + depth as input images
  • generates simplified geometry that textures will be mapped onto to represent the scene
  • prebuild version can be found here: https://github.com/ddiakopoulos/seurat/releases
seurat.png

  • build upon the ideas of moment shadow mapping
  • transparent geometry is rendered twice

    1. determine transmittance function per pixel
    2. composite all transparent surfaces
  • taking advantage of the fact that the logarithm of the transmittance can be accumulated additively

mboit.png

  • overview of the new rendering API
  • build around method chaining for the initialization of descriptors

  • videos and presentations from GTC are available
gtc-logo.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