module
Demo/helper modules for using the stencil buffer in DX11.
Contains 2 modules: StencilMask (DX11.RenderState Write), & StencilMask (DX11.RenderState Read)
You can use 8 bits of the depth-buffer as a stencil buffer. With the Write module we set each bit individually to render 8 independent masks for free (or at slightly-reduced-but-still-quite-ok depth accuracy).
Using the Read module you can limit a shader to only drawing the pixels flagged by any of your mask(s)
You can set all of this in your shader also, but can be handy to not have to modify everything.
Edit: Have changed these to be renderstate only, as StencilReference (DX11.Layer) had some issues and is being depreciated.
anonymous user login
~2d ago
~2d ago
~9d ago
~11d ago
~13d ago
~16d ago
~16d ago
~23d ago
~30d ago
~30d ago
interesting, thanks!