DirectX 12 and Vulkan mean that draw calls have extremely low overhead and you'll be able to push a lot more of them without a performance problem. They make compute shaders first-class citizens, making it so that you have to jump through fewer hoops to get certain advanced rendering techniques working like clustered…
Isn't the reason the AO background is white so that when you multiply it over things the edges won't accidentally be effect things? Even with proper edge padding I don't see much sense in switching it to black? Maybe so you can use it as a mask? Why not render out a solid colored template? UVW Editor Window > Tools >…
I wouldn't have thought memory was really a concern here, I'd be more interested in what you're actually drawing to screen . It'll depend on how the renderer batches materials and what effect changing parameters has as to what happens at render time. That simple material colour change could mean you're quadrupling the…
Without a doubt its 3D Max as the Graphic Engine is very different from Maya. Now as for you mention, Eric is correct it is a reverse face as your only getting some vertices welding to see if an object has a reverse face you can click render with the default settings and it will render out an image of your model and if…
Glad you managed to work it out in the end Simon - nice write up, nice demo too Tamarin! Once I created the texture and an example shader I passed this on to the effects guys who created the full effect you see in the video. So really I didn't do much :) And of course the method is inspired by lots of other peoples work. I…
@ayoub44 Thanks for your feedback man! The first receiver render is just weird light reflection, surface is very smooth on model There are clear hard edges in the second image, I did it because I wanted to avoid extreme waviness /mesh misalignment, I have to correct this part in photoshop. @Irodex Thanks man, I tried to…
Your object from MOI is a NURBS solid object that gets converted to polygons at export. You may have to fiddle with the settings to get a cleaner conversion. No, the n-gons are fine. It's the misaligned/unwelded verts/edges that are the export error. If you're just exporting for rendering then polysoup geo or any geo is…
I think CrazyButcher is right. From what I understand it's crunching a bunch of numbers (CPU), not shuffling data around in and out of temp storage (RAM). Rendering is about figuring out angles and thinking through complex solutions. It's why a render farm has hundreds of CPU's instead of one super computer stuffed full of…
This a great overview of Lighting, mainly for film, but still applies to general CG work. A great overview of lighting, shadows, composition and general lighting techniques. [ame="https://www.amazon.com/Digital-Lighting-Rendering-2nd-Edition/dp/0321316312/ref=sr_1_1?ie=UTF8&qid=1338223437&sr=8-1"]Amazon.com: Digital…
Your CPU and GPU times are very low and your "saved by batches" is high which is good. Your shadowcasters number is quite high. That isn't an issue now but it may be if you add lights to the scene. By default, I turn all shadowcaster switches off for each object mesh renderer unless I know the shadow will be seen by the…