How commonly supported is the Stencil Buffer right now by hardware in OpenGL?
Is it better/worse supported than shaders?
If the hardware doesn't support it, will it be emulated in software?
I haven't been able to find any hard data on the subject unfortunately... I want to assume that since stenciling is an old technology, it'd have ubiquitous support. However, being an old technology, it could just as easily be getting phased out of newer GPU hardware in favour of fragment shaders.
In my scenario, I'd be using an 8-bit stencil buffer in combination with a 24-bit depth buffer, used with VBOs (if that affects anything). If I use the stencil buffer, it won't be possible for those without stencil support to be able to play the game I'm making, thus the worry. If they can at least emulate the stenciling effect in software, while it wouldn't be ideal, it would be enough to put my fears to rest.