Skip to content

Commit f7a1eaf

Browse files
committed
renderer: remove some useless GLimp_LogComment() calls
1 parent cfb929a commit f7a1eaf

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/engine/renderer/tr_backend.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,6 @@ void GL_SelectTexture( int unit )
152152
if ( unit >= 0 && unit < glConfig2.maxTextureUnits )
153153
{
154154
glActiveTexture( GL_TEXTURE0 + unit );
155-
156-
GLIMP_LOGCOMMENT( "glActiveTexture( GL_TEXTURE%i )", unit );
157155
}
158156
else
159157
{
@@ -5544,8 +5542,6 @@ const RenderCommand *SwapBuffersCommand::ExecuteSelf( ) const
55445542
RB_ShowImages();
55455543
}
55465544

5547-
GLIMP_LOGCOMMENT( "***************** RB_SwapBuffers *****************" );
5548-
55495545
GLimp_EndFrame();
55505546

55515547
backEnd.projection2D = false;

src/engine/renderer/tr_shade.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2314,8 +2314,6 @@ void Tess_ComputeColor( shaderStage_t *pStage )
23142314
float blue;
23152315
float alpha;
23162316

2317-
GLIMP_LOGCOMMENT( "--- Tess_ComputeColor ---" );
2318-
23192317
// rgbGen
23202318
switch ( pStage->rgbGen )
23212319
{
@@ -2547,8 +2545,6 @@ Tess_ComputeTexMatrices
25472545
*/
25482546
void Tess_ComputeTexMatrices( shaderStage_t *pStage )
25492547
{
2550-
GLIMP_LOGCOMMENT( "--- Tess_ComputeTexMatrices ---" );
2551-
25522548
matrix_t *matrix = tess.svars.texMatrices;
25532549
matrix_t *lastMatrix = matrix + MAX_TEXTURE_BUNDLES;
25542550

0 commit comments

Comments
 (0)