Skip to content

Commit

Permalink
Remove a few name tags
Browse files Browse the repository at this point in the history
  • Loading branch information
timangus committed Feb 16, 2013
1 parent 2da0fd6 commit d201443
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 23 deletions.
2 changes: 1 addition & 1 deletion code/client/snd_dma.c
Expand Up @@ -492,7 +492,7 @@ static qboolean S_Base_HearingThroughEntity( int entityNum, vec3_t origin )

if( listener_number == entityNum )
{
// FIXME: <tim@ngus.net> 28/02/06 This is an outrageous hack to detect
// This is an outrageous hack to detect
// whether or not the player is rendering in third person or not. We can't
// ask the renderer because the renderer has no notion of entities and we
// can't ask cgame since that would involve changing the API and hence mod
Expand Down
2 changes: 1 addition & 1 deletion code/client/snd_openal.c
Expand Up @@ -656,7 +656,7 @@ static qboolean S_AL_HearingThroughEntity( int entityNum )

if( lastListenerNumber == entityNum )
{
// FIXME: <tim@ngus.net> 28/02/06 This is an outrageous hack to detect
// This is an outrageous hack to detect
// whether or not the player is rendering in third person or not. We can't
// ask the renderer because the renderer has no notion of entities and we
// can't ask cgame since that would involve changing the API and hence mod
Expand Down
6 changes: 3 additions & 3 deletions code/renderergl2/tr_bsp.c
Expand Up @@ -789,7 +789,7 @@ static void ParseFace( dsurface_t *ds, drawVert_t *verts, float *hdrVertColors,
surf->data = (surfaceType_t *)cv;

#ifdef USE_VERT_TANGENT_SPACE
// Tr3B - calc tangent spaces
// Calculate tangent spaces
{
srfVert_t *dv[3];

Expand Down Expand Up @@ -1022,7 +1022,7 @@ static void ParseTriSurf( dsurface_t *ds, drawVert_t *verts, float *hdrVertColor
}

#ifdef USE_VERT_TANGENT_SPACE
// Tr3B - calc tangent spaces
// Calculate tangent spaces
{
srfVert_t *dv[3];

Expand Down Expand Up @@ -2316,7 +2316,7 @@ static void R_LoadSubmodels( lump_t *l ) {

if(i == 0)
{
// Tr3B: add this for limiting VBO surface creation
// Add this for limiting VBO surface creation
s_worldData.numWorldSurfaces = out->numSurfaces;
}
}
Expand Down
5 changes: 2 additions & 3 deletions code/renderergl2/tr_local.h
Expand Up @@ -81,7 +81,6 @@ typedef struct {

qboolean needDlights; // true for bmodels that touch a dlight
qboolean lightingCalculated;
// JBravo: Mirrored models
qboolean mirrored; // mirrored matrix, needs reversed culling
vec3_t lightDir; // normalized direction towards light
vec3_t ambientLight; // color normalized to 0-255
Expand Down Expand Up @@ -764,7 +763,7 @@ enum
GLSL_MAT16
};

// Tr3B - shaderProgram_t represents a pair of one
// shaderProgram_t represents a pair of one
// GLSL vertex and one GLSL fragment shader
typedef struct shaderProgram_s
{
Expand Down Expand Up @@ -912,7 +911,7 @@ enum
};

//
// Tr3B: these are fire wall functions to avoid expensive redundant glUniform* calls
// These are fire wall functions to avoid expensive redundant glUniform* calls
//#define USE_UNIFORM_FIREWALL 1
//#define LOG_GLSL_UNIFORMS 1

Expand Down
6 changes: 4 additions & 2 deletions code/renderergl2/tr_main.c
Expand Up @@ -495,7 +495,8 @@ qboolean R_CalcTangentVectors(srfVert_t * dv[3])
/*
=================
R_FindSurfaceTriangleWithEdge
Tr3B - recoded from Q2E
Recoded from Q2E
=================
*/
static int R_FindSurfaceTriangleWithEdge(int numTriangles, srfTriangle_t * triangles, int start, int end, int ignore)
Expand Down Expand Up @@ -539,7 +540,8 @@ static int R_FindSurfaceTriangleWithEdge(int numTriangles, srfTriangle_t * trian
/*
=================
R_CalcSurfaceTriangleNeighbors
Tr3B - recoded from Q2E
Recoded from Q2E
=================
*/
void R_CalcSurfaceTriangleNeighbors(int numTriangles, srfTriangle_t * triangles)
Expand Down
7 changes: 0 additions & 7 deletions code/renderergl2/tr_postprocess.c
Expand Up @@ -326,13 +326,6 @@ void RB_SunRays(void)

pos[0] = 0.5f + hpos[0] * hpos[3];
pos[1] = 0.5f - hpos[1] * hpos[3];

// viewport dimensions
// JBravo: Apparently not used
/* w = glConfig.vidWidth;
h = glConfig.vidHeight;
w2 = glConfig.vidWidth / 2;
h2 = glConfig.vidHeight / 2; */

// initialize quarter buffers
{
Expand Down
3 changes: 0 additions & 3 deletions code/renderergl2/tr_scene.c
Expand Up @@ -91,7 +91,6 @@ void R_AddPolygonSurfaces( void ) {
int i;
shader_t *sh;
srfPoly_t *poly;
// JBravo: Fog fixes
int fogMask;

tr.currentEntityNum = REFENTITYNUM_WORLD;
Expand Down Expand Up @@ -202,7 +201,6 @@ RE_AddRefEntityToScene
=====================
*/
void RE_AddRefEntityToScene( const refEntity_t *ent ) {
// JBravo: Mirrored models
vec3_t cross;

if ( !tr.registered ) {
Expand All @@ -227,7 +225,6 @@ void RE_AddRefEntityToScene( const refEntity_t *ent ) {
backEndData->entities[r_numentities].e = *ent;
backEndData->entities[r_numentities].lightingCalculated = qfalse;

// JBravo: Mirrored models
CrossProduct(ent->axis[0], ent->axis[1], cross);
backEndData->entities[r_numentities].mirrored = (DotProduct(ent->axis[2], cross) < 0.f);

Expand Down
2 changes: 1 addition & 1 deletion code/renderergl2/tr_vbo.c
Expand Up @@ -842,7 +842,7 @@ RB_UpdateVBOs
Adapted from Tess_UpdateVBOs from xreal
Tr3B: update the default VBO to replace the client side vertex arrays
Update the default VBO to replace the client side vertex arrays
==============
*/
void RB_UpdateVBOs(unsigned int attribBits)
Expand Down
2 changes: 0 additions & 2 deletions code/tools/lcc/lburg/gram.c
Expand Up @@ -18,9 +18,7 @@ YYCONST static char yysccsid[] = "@(#)yaccpar 1.8 (Berkeley +Cygnus.28) 01/20/91
#ifndef YYDONT_INCLUDE_STDIO
#include <stdio.h>
#endif
//#ifdef __cplusplus TA <tim@ngus.net> stdlib.h applies to C too
#include <stdlib.h> /* for malloc/realloc/free */
//#endif
#line 2 "lburg/gram.y"
#include <stdio.h>
#include "lburg.h"
Expand Down

0 comments on commit d201443

Please sign in to comment.