Skip to main content

What is shader?

Shader is one of the important component of mental ray. Let me tell about it a bit.

A shader is a program code fragment that computes how light interacts with objects. This was the original concept of shader in early computer graphics time and nowadays the role of shader and its meaning are expanded. In one of the common scenario in computer graphics, objects are usually represented as polygons. First, the intensity of each vertex is computed, then inside the polygon is filled by an interpolation method. This becomes more complex as the computer graphics technology developed. There were two shader development directions. One is a hardware rendering that concentrates rendering speed and interactivity. The other is a software rendering that concentrates the image quality.

Nowadays graphics hardware is called GPU (Graphics Processing Unit). The early stage GPU has fixed functionalities. Because fixed functionality can be achieved more performance in practice. The implementation was based on deep pipeline processing which gives us good throughput of pixel generation. However, as the semiconductor technology evolved and hardware had more computational power, GPU also started to consider high quality rendering. GPU becomes programmable. The initial shader programs were written in assembler like language, then shader language for GPU was established, e.g., Cg. Now there are CUDA and OpenCL (2009), these languages are no longer for only shaders, but also for general purpose programming.

On the other hand, mental ray shader started with the purpose to generate high quality rendering results. The main role of shader is to simulate light and object interaction, some of are based on physics and some are based on a good heuristics. GPU is good at if the light and object interaction is local, since parallel processing works better with high local computation. Especially, pixel parallelism works quite well in early days. But the real world problem is global. Any far away object can cast a shadow to other objects. One single object can affects whole scene. Mental ray is designed for this global illumination simulation. Mental ray's each shader still could compute a local interaction between light and objects, but this effect is propagated by ray tracing algorithm to compute global illumination effect.

Recently, these two shader directions are coming to merge. There are several GPU ray tracers. mental images produces a product called mental mill (http://www.mentalimages.com/products/mental-mill.html), that employs general shader language MetaSL. mental mill compiles MetaSL and exports several GPU based languages (e.g., Cg) and also mental ray shaders.

I think GPU shaders still largely take care of speed because of game industry. Software rendering still has some advantages for the quality of image.

(mental images was taken over by NVidia at November, 2007. NVidia is one of the leading company of GPU industory. http://www.nvidia.com/object/mental_images.html)

Comments

Popular posts from this blog

iray 5: iray in standalone mental ray

So far, I told about exporting an mi file. Now here is the shader conversion for iray. iray supports mia_material. To reuse current scenes, it is nice if I could convert the 3dsmax shaders to mia_material (Arch&Design) shader. I could imagine that some of other shaders will be supported also, but, iray is a CUDA program. CUDA has a divergence problem, it means, if many kind of shaders are in the scene, the performance becomes low. That's natural. A shader is a function and many different shaders are running on a CUDA device, I could see it will be slow. But, if the same function everywhere, then CUDA works well. (in theory. If function itself has a lot of branches, then there is a problem. Though many obstacles are there, but many kind of shaders seems to have not so chance. ) Also I imagine there is less trouble if I use the mental images native supported shaders since iray is a new renderer. In my personal opinion, I would convert the shaders. You can find 3dsmax shaders ...

iray 2: iray in standalone mental ray

Even iray has no customized shaders, iray has a shader. It is mia_material (Arch&Design in 3dsmax) only. Actually, it is a shader that has mia_material interface and the implementation is different from mental ray (only for iray). mental images explains this is for the users who already know the mia_material. Such user doesn't need to learn the iray shader from the scratch. Therefore, some of the physically meaningless parameters of mia_material are disabled. They also said that they will support more physical shaders, like BRDF shaders. Someone  asked about volume shaders support at the confenence, but, unfortunately, iray version 1 doesn't support volume shaders and will be supported in the following versions sometime. As for a DCC software user, the problem of iray is they can use it from 3dsmax/Maya/XSI or not. But NVidia's explanation is 'that is autodesk's decision.' Although, mental ray 3.8+ standalone or NVidia RealityServer support iray. (See ment...