Skip to content

Commit

Permalink
does it make sense?
Browse files Browse the repository at this point in the history
  • Loading branch information
illwieckz committed Jun 11, 2024
1 parent 03320b0 commit 1898c46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/engine/renderer/tr_local.h
Original file line number Diff line number Diff line change
Expand Up @@ -761,6 +761,7 @@ enum class dynamicLightRenderer_t { LEGACY, TILED };
f16vec2_t *f16st;
f16vec4_t *f16stpq;
vec2_t *st;
vec4_t *stpq;
};

int (*boneIndexes)[ 4 ];
Expand Down
2 changes: 1 addition & 1 deletion src/engine/renderer/tr_vbo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ static void R_CopyVertexData( VBO_t *vbo, byte *outData, vboData_t inData )
}
else
{
halfToFloat( inData.f16stpq[ v ], ptr[ v ].texCoords );
Vector4Copy( inData.stpq[ v ], ptr[ v ].texCoords );
}
}

Expand Down

0 comments on commit 1898c46

Please sign in to comment.