[Closed] Change stencil when depth test fails

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
Post Reply
siberian
Prole
Posts: 21
Joined: Sat Apr 06, 2019 1:42 pm

[Closed] Change stencil when depth test fails

Post by siberian »

Hello.
Is it possible to increase or decrease the value in the stencil only if the pixel is not affected by the stencil function in love.graphics.stencil?
Last edited by siberian on Mon Jan 02, 2023 3:07 pm, edited 1 time in total.
MrFariator
Party member
Posts: 515
Joined: Wed Oct 05, 2016 11:53 am

Re: Change stencil when depth test fails

Post by MrFariator »

As far as I know, the stencil function can only alter the values of pixels it touches, as per the StencilAction page on the wiki (except maybe Invert? Never used it). As such, depending on if you want to limit your rendering to things the stencil touches, or to limit to things the stencil is not touching, you'll have to consider different CompareModes in love.graphics.setStencilTest. All depends on your stencil setup, of course.
User avatar
slime
Solid Snayke
Posts: 3134
Joined: Mon Aug 23, 2010 6:45 am
Location: Nova Scotia, Canada
Contact:

Re: Change stencil when depth test fails

Post by slime »

love doesn't support that right now. What sort of thing would you use it for?
siberian
Prole
Posts: 21
Joined: Sat Apr 06, 2019 1:42 pm

Re: [Closed] Change stencil when depth test fails

Post by siberian »

slime wrote: Mon Jan 02, 2023 2:09 pm love doesn't support that right now. What sort of thing would you use it for?
For stencil shadows with "Carmack’s Reverse".
It's okay if it doesn't work, I'll do something else.
2023-01-02_21h58_12.png
2023-01-02_21h58_12.png (202.75 KiB) Viewed 1441 times
User avatar
slime
Solid Snayke
Posts: 3134
Joined: Mon Aug 23, 2010 6:45 am
Location: Nova Scotia, Canada
Contact:

Re: [Closed] Change stencil when depth test fails

Post by slime »

I think pretty much all 3D games these days use shadow mapping (which love does expose functionality for) instead of shadow volumes.

That's not to say stencil actions when the depth test fails definitely won't be exposed in the future, just that their practical use is pretty limited - shadow volumes via depth-fail stenciling was the main thing which used that feature but its downsides compared to shadow mapping mean people generally choose the latter instead.
siberian
Prole
Posts: 21
Joined: Sat Apr 06, 2019 1:42 pm

Re: [Closed] Change stencil when depth test fails

Post by siberian »

slime wrote: Mon Jan 02, 2023 3:17 pm I think pretty much all 3D games these days use shadow mapping (which love does expose functionality for) instead of shadow volumes.
I haven't made friends with the shadow maps yet :3 . So far I have only had problems with them.
But I think I'll learn someday.
Thank you.
Post Reply

Who is online

Users browsing this forum: No registered users and 43 guests