Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Posterize option to LTCGI Diffuse #85

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open

Conversation

fundale
Copy link

@fundale fundale commented Mar 3, 2025

No description provided.

@orels1
Copy link
Owner

orels1 commented Mar 4, 2025

Hmm, I'm not really sure I want to add a branch just for this 🤔
Especially in the LTCGI module that also gets used by world shaders.

The v2 of the toon shader (which is what I assume this is meant to be used with) could probably support an extra spot where you posterize the LTCGI results in its own module.

However, thinking about it some more it feels like doing something like using the Toon Ramp and other shading settings might be what you actually want? Then instead of just pure posterization with discrete steps - you could have full ramp-based control over how the diffuse shading from LTCGI is applied? 🤔

@fundale
Copy link
Author

fundale commented Mar 4, 2025

Hmm, I'm not really sure I want to add a branch just for this 🤔 Especially in the LTCGI module that also gets used by world shaders.

The v2 of the toon shader (which is what I assume this is meant to be used with) could probably support an extra spot where you posterize the LTCGI results in its own module.

However, thinking about it some more it feels like doing something like using the Toon Ramp and other shading settings might be what you actually want? Then instead of just pure posterization with discrete steps - you could have full ramp-based control over how the diffuse shading from LTCGI is applied? 🤔

In a separate LTCGI module, or using a compiler directive in the current one?
I could see having a separate LTCGI module for Toon could be useful for adding more post effects or configuration to the LTCGI Toon module.

I hadn't really considered a Toon Ramp, though that could be useful and easier to customize.

And yes this effect is primarily for LTCGI on Toon, aiming to make it look more "Toony" to fit with the aesthetic.

@orels1
Copy link
Owner

orels1 commented Mar 5, 2025

In a separate LTCGI module, or using a compiler directive in the current one?

Probably a separate module
So with how v2 toon is set up - every lighting calculation is powered by the module itself, since the Toon shader is essentially just a collection of loosely connected effects.

So for this kinda thing i could imagine LTCGI putting data into something like
half3 customGIDiffuse and half3 customGISpecular, so then you can define your module that runs late which then modifies those in some way. Before the shader lighting model composites them all together

@fundale
Copy link
Author

fundale commented Mar 7, 2025

Gave Toon it's own LTCGI module with Texture Ramp support.
Tried messing around with customGIDiffuse and customGISpecular however they appear to only function in a baked state

@orels1
Copy link
Owner

orels1 commented Mar 7, 2025

oh I meant that I could set up something like that for the 2.0 version, not the current one

@fundale
Copy link
Author

fundale commented Mar 10, 2025

The customGI* or the Ramping / separate module?

@orels1
Copy link
Owner

orels1 commented Mar 11, 2025

the customGI part

@fundale
Copy link
Author

fundale commented Mar 11, 2025

Ah ok

@orels1
Copy link
Owner

orels1 commented Mar 18, 2025

The v7.0.0-dev.8 of the shaders now has support for customGISpecular and customGIDiffuse which you can access via %CustomGI functions, similar to how LTCGI module did it on Dev already.

This is also supported by the Toon shader now.
I would recommend also adding a very high order number to the posterization module since you'd want it to always run last, e.g.

%CustomGI("LTCGICustomGIPosterize", 1000)
{
    void LTCGICustomGI(MeshData d, SurfaceData o, inout half3 customGISpecular, inout half3 customGIDiffuse)
    {
        // modify custom GI stuff before it gets composited with the rest of the lighting
    }
}

@fundale
Copy link
Author

fundale commented Mar 19, 2025

Updated the Toon LTCGI and CustomGI Ramp modules, thought having it as a separate module would become useful for providing Toon Ramping for other CustomGI FX (perhaps AreaLit and VRSLGI).

Also should I remove the LTCGI Toon module from V1?

@orels1
Copy link
Owner

orels1 commented Mar 19, 2025

Have you tested it in Toon v1? As I'm pretty sure toon v1 doesn't have any hook points for %CustomGIFunctions in the fragment function 🤔

@fundale
Copy link
Author

fundale commented Mar 20, 2025

I have not tested the V2 LTCGI Toon Module with V1 Toon,
I'll check and make sure the V1 LTCGI Toon module still works with V1 Toon

@fundale
Copy link
Author

fundale commented Mar 20, 2025

The V1 LTCGI Toon Module still functions with V1 Toon, using %Color however it doesn't work with %CustomGI

@orels1
Copy link
Owner

orels1 commented Mar 20, 2025

yeah, ok, that's about what I expected, as Toon v1 doesnt have %CustomGI hooks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants