OpenGL2: Fix more reversed VectorCopy4() usage.
This commit is contained in:
parent
7d063ba81d
commit
bbc9e263f0
1 changed files with 5 additions and 5 deletions
|
@ -128,10 +128,10 @@ void RB_AddQuadStampExt( vec3_t origin, vec3_t left, vec3_t up, float color[4],
|
||||||
|
|
||||||
R_VaoPackNormal(iNormal, normal);
|
R_VaoPackNormal(iNormal, normal);
|
||||||
|
|
||||||
VectorCopy4(tess.normal[ndx], iNormal);
|
VectorCopy4(iNormal, tess.normal[ndx]);
|
||||||
VectorCopy4(tess.normal[ndx+1], iNormal);
|
VectorCopy4(iNormal, tess.normal[ndx + 1]);
|
||||||
VectorCopy4(tess.normal[ndx+2], iNormal);
|
VectorCopy4(iNormal, tess.normal[ndx + 2]);
|
||||||
VectorCopy4(tess.normal[ndx+3], iNormal);
|
VectorCopy4(iNormal, tess.normal[ndx + 3]);
|
||||||
|
|
||||||
// standard square texture coordinates
|
// standard square texture coordinates
|
||||||
VectorSet2(tess.texCoords[ndx ][0], s1, t1);
|
VectorSet2(tess.texCoords[ndx ][0], s1, t1);
|
||||||
|
@ -1156,7 +1156,7 @@ static void RB_SurfaceGrid( srfBspSurface_t *srf ) {
|
||||||
|
|
||||||
if ( tess.shader->vertexAttribs & ATTR_LIGHTDIRECTION )
|
if ( tess.shader->vertexAttribs & ATTR_LIGHTDIRECTION )
|
||||||
{
|
{
|
||||||
VectorCopy4(lightdir, dv->lightdir);
|
VectorCopy4(dv->lightdir, lightdir);
|
||||||
lightdir += 4;
|
lightdir += 4;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue