Skip to content
Snippets Groups Projects
Commit fb9cb882 authored by Drake Arconis's avatar Drake Arconis
Browse files

STORM-2143 Correct vertex winding of stars

parent a088a129
No related branches found
No related tags found
No related merge requests found
...@@ -1253,6 +1253,7 @@ Shnurui Troughton ...@@ -1253,6 +1253,7 @@ Shnurui Troughton
Shyotl Kuhr Shyotl Kuhr
MAINT-1138 MAINT-1138
MAINT-2334 MAINT-2334
STORM-2143
Siana Gearz Siana Gearz
STORM-960 STORM-960
STORM-1088 STORM-1088
...@@ -1286,6 +1287,7 @@ Sovereign Engineer ...@@ -1286,6 +1287,7 @@ Sovereign Engineer
MAINT-6107 MAINT-6107
STORM-2107 STORM-2107
MAINT-6218 MAINT-6218
STORM-2143
SpacedOut Frye SpacedOut Frye
VWR-34 VWR-34
VWR-45 VWR-45
......
...@@ -810,18 +810,18 @@ BOOL LLVOWLSky::updateStarGeometry(LLDrawable *drawable) ...@@ -810,18 +810,18 @@ BOOL LLVOWLSky::updateStarGeometry(LLDrawable *drawable)
up *= sc; up *= sc;
*(verticesp++) = mStarVertices[vtx]; *(verticesp++) = mStarVertices[vtx];
*(verticesp++) = mStarVertices[vtx]+left; *(verticesp++) = mStarVertices[vtx]+up;
*(verticesp++) = mStarVertices[vtx]+left+up; *(verticesp++) = mStarVertices[vtx]+left+up;
*(verticesp++) = mStarVertices[vtx]+left; *(verticesp++) = mStarVertices[vtx];
*(verticesp++) = mStarVertices[vtx]+left+up; *(verticesp++) = mStarVertices[vtx]+left+up;
*(verticesp++) = mStarVertices[vtx]+up; *(verticesp++) = mStarVertices[vtx]+left;
*(texcoordsp++) = LLVector2(0,0); *(texcoordsp++) = LLVector2(1,0);
*(texcoordsp++) = LLVector2(0,1);
*(texcoordsp++) = LLVector2(1,1); *(texcoordsp++) = LLVector2(1,1);
*(texcoordsp++) = LLVector2(0,1); *(texcoordsp++) = LLVector2(0,1);
*(texcoordsp++) = LLVector2(1,1);
*(texcoordsp++) = LLVector2(1,0); *(texcoordsp++) = LLVector2(1,0);
*(texcoordsp++) = LLVector2(0,1);
*(texcoordsp++) = LLVector2(0,0);
*(colorsp++) = LLColor4U(mStarColors[vtx]); *(colorsp++) = LLColor4U(mStarColors[vtx]);
*(colorsp++) = LLColor4U(mStarColors[vtx]); *(colorsp++) = LLColor4U(mStarColors[vtx]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment