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

renderer: split generic and generic3D #1436

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

illwieckz
Copy link
Member

@illwieckz illwieckz commented Nov 12, 2024

Split gl_genericShader and gl_generic3DShader.

  • Dedicate a simple shader without extra uniforms and no permutations for simple things like debug tools.
  • Make sure to not have to call this boiler plate everywhere:
gl_genericShader->SetVertexSkinning( false );
gl_genericShader->SetVertexAnimation( false );
gl_genericShader->SetTCGenEnvironment( false );
gl_genericShader->SetTCGenLightmap( false );
gl_genericShader->SetDepthFade( false );
// should be done there: gl_genericShader->BindProgram( 0 );
gl_genericShader->SetUniform_AlphaTest( GLS_ATEST_NONE );
  • Leverage more of the compiler type checking at build time.

Here are the current usages:

  • gl_genericShader: Mostly used by debug tools and things only requiring a very simple shader.
  • gl_generic2DShader: Used for 2D UI elements, it has special code for RmlUi transforms.
  • gl_generic3DShader: Full-featured shader for stages with a single texture.
  • gl_lightMapping: Full-featured shader for multi-textured stages.

The generic2D and generic3D names are temporary names, we can rename them later to something more meaningful, as 2D and 3D can be confusing with 2D and 3D textures but they both receive 2D textures, we may rename them like genericUI and generic<SOMETHING>. The Render_generic2D, Render_generic3D and the Render_generic wrapper (that only calls code using gl_generic2DShader and gl_generic3DShader) may be renamed too in the future.

If it happens that by doing so when compiling gl_genericShader we recompile a shader that already exists as a permutation of gl_generic3DShader, we may improve caching to deduplicate them (this may even deduplicate some gl_generic2DShader too):

This split has nothing to do with light overbright, I first implemented it as part of my overbright efforts because such overbright effort was one of the use case where such changes having already be made before would have make things easier. The overbright effort just reminded me I wanted to do that for a long time, so I decided it was the right time to finally do it.

@illwieckz
Copy link
Member Author

This is to be merged after:

As this assumes this other branch is already merged (hence the temp commit to fix the build).

@illwieckz
Copy link
Member Author

The only usage of gl_genericShader seems to be:

  • DebugDrawBegin(),
  • RB_RunVisTests(),
  • RB_RenderDebugUtils() (for many debug utilities),
  • RB_ShowImages() (another debug utility),
  • the to-be-removed legacy shadow map code in RB_SetupLightForLighting.

They all live in tr_backend.cpp.

The DrawTris() function from tr_shade.cpp that can be seen as a debug utility uses gl_generic3DShader because it has to process the same transformations as gl_generic3DShader or gl_lightMappingShader. The the only difference with them is to render some wires instead of textures.

@illwieckz
Copy link
Member Author

illwieckz commented Nov 12, 2024

Also, there may be no need for any gl_genericMaterialShader variant.

Only gl_generic2DMaterialShader and gl_generic3DMaterialShader variants look to be needed.

@slipher
Copy link
Member

slipher commented Nov 12, 2024

gl_generic2DMaterialShader

Should never need to exist.

We could get most of the benefit of boilerplate reduction by switching off GLSL macros en masse rather than one at a time, replacing

gl_genericShader->SetVertexSkinning( false );
gl_genericShader->SetVertexAnimation( false );
gl_genericShader->SetTCGenEnvironment( false );
gl_genericShader->SetTCGenLightmap( false );
gl_genericShader->SetDepthFade( false );

with

gl_genericShader->DelMacroBit(-1);

@illwieckz
Copy link
Member Author

illwieckz commented Nov 12, 2024

Yes but there is still a one-line boilerplate to be copy-pasted every time gl_genericShader is used in those functions (currently 12 times), plus the one-liner uniform boilerplate to be done 12 times too.

And a type can do it better.

@VReaperV
Copy link
Contributor

VReaperV commented Nov 12, 2024

  • gl_generic3DShader: Full-featured shader for stages with a single texture.
  • gl_lightMapping: Full-featured shader for multi-textured stages.

I believe lighting here is the more important distinction (height maps, normal maps etc. also have to do with lighting).

@VReaperV
Copy link
Contributor

gl_generic2DMaterialShader

Yeah, I don't see the point in that either, UI wouldn't benefit from it, and generating materials for UI wuld require rewriting a lot of code.

@illwieckz
Copy link
Member Author

gl_generic2DMaterialShader

Yeah, I don't see the point in that either, UI wouldn't benefit from it, and generating materials for UI wuld require rewriting a lot of code.

That part was just my memory being wrong. That doesn't change the fact there may be no need for a material variant of such stripped down generic shader, unlike the generic3D one, which is what I wanted to say.

@illwieckz
Copy link
Member Author

I wonder if such simple shader would be reusable for displaying a startup logo as soon as possible:

It would then be the very first shader being compiled, maybe not having permutations and being simple may help for having it built as soon as possible?

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

Successfully merging this pull request may close these issues.

3 participants