blendFunc GL_DST_COLOR GL_SRC_COLOR
This is also the simple blend function: blendFunc filter
You could have spotted something here, but where did you find that quote, could you point out the exact section? That could use fixing but I can’t find it.
detail textures dont darken the base texture, on average they should leave it the same brightness.
Correct, which is why you have to twiddle around with the overall contrast of the detail texture to get it to average around 50%. In general you should use filter blends, but you don’t technically have to. Detail textures are just like any other texture stage except that it gives the user the option to toggle it on or off. So if a scrolling, additive blend of purple polka dots is the effect you are looking for, there isn’t anything to stop you from doing it.
gl_dst_color gl_src_color would allow textures to be more than the original brightness the downside would be a halfing in the range of brightness’s either side of that. also it would look washed out in some cases.
That has to do with colour ranges. If you add or subtract two values of colours, any values that falls outside of the total range of possible colours will get clipped off and be represented at either pure white or pure black, resulting in half the total number of colours that you would normally be able to get.
That’s why HDR is important for computer graphics because using floating point values, you can scale colour ranges far beyond the normal and prevent colours from getting clipped off. Most people confuse HDR with bloom and blur effects and totally miss the boat with regards to colour ranges. Bloom and blur has very little to do with HDR.