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 RSF_FORCE_LIGHTMAP #1523

Merged
merged 3 commits into from
Mar 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/engine/renderer/tr_local.h
Original file line number Diff line number Diff line change
Expand Up @@ -1319,6 +1319,8 @@ enum class shaderProfilerRenderSubGroupsMode {

int autoSpriteMode;

bool forceLightMap;

uint8_t numDeforms;
deformStage_t deforms[ MAX_SHADER_DEFORMS ];

Expand Down
13 changes: 13 additions & 0 deletions src/engine/renderer/tr_shader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5869,6 +5869,14 @@ static shader_t *FinishShader()
numStages = MAX_SHADER_STAGES;
GroupActiveStages();

if ( shader.forceLightMap && numStages == 1 ) {
shaderStage_t* pStage = &stages[0];

if ( pStage->type == stageType_t::ST_COLORMAP ) {
pStage->type = stageType_t::ST_DIFFUSEMAP;
}
}

// set appropriate stage information
for ( size_t stage = 0; stage < numStages; stage++ )
{
Expand Down Expand Up @@ -6233,6 +6241,11 @@ shader_t *R_FindShader( const char *name, shaderType_t type, int flags )
shader.entitySpriteFaceViewDirection = true;
}

if ( flags & RSF_FORCE_LIGHTMAP )
{
shader.forceLightMap = true;
}

// attempt to define shader from an explicit parameter file
shaderText = FindShaderInShaderText( strippedName );

Expand Down
2 changes: 1 addition & 1 deletion src/engine/renderer/tr_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ enum RegisterShaderFlags_t {
RSF_NOMIP = BIT( 2 ),
RSF_FITSCREEN = BIT( 3 ),
RSF_LIGHT_ATTENUATION = BIT( 4 ),
RSF_NOLIGHTSCALE = BIT( 5 ), // TODO(0.56): delete, does nothing
RSF_FORCE_LIGHTMAP = BIT( 5 ), // Used to make particles/trails work with the lightGrid in GLSL
RSF_SPRITE = BIT( 6 ),
};

Expand Down