Hi,
I try to find the bottlenecks of some of my shaders and the GPU ShaderAnalyzer says that they are bound to Exports. What does this exactly mean?
It means that in your shader, the instruction type with the highest number of executed instructions is "export". This is the instruction to output the results of the shader.
Thanks for the answer.