Skip to content
Snippets Groups Projects
Commit ec2aeef9 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Experimental-ish optimization to bumpmap draw to reduce list realloc

parent f2974ff4
No related branches found
No related tags found
No related merge requests found
...@@ -1917,7 +1917,11 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume, ...@@ -1917,7 +1917,11 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume,
LL_RECORD_BLOCK_TIME(FTM_FACE_TEX_DEFAULT); LL_RECORD_BLOCK_TIME(FTM_FACE_TEX_DEFAULT);
std::vector<LLVector2> bump_tc; std::vector<LLVector2> bump_tc;
if (!mat && do_bump)
{
bump_tc.reserve(num_vertices);
}
if (mat && !mat->getNormalID().isNull()) if (mat && !mat->getNormalID().isNull())
{ //writing out normal and specular texture coordinates, not bump offsets { //writing out normal and specular texture coordinates, not bump offsets
do_bump = false; do_bump = false;
...@@ -2006,8 +2010,8 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume, ...@@ -2006,8 +2010,8 @@ BOOL LLFace::getGeometryVolume(const LLVolume& volume,
xform(tc, cos_ang, sin_ang, os, ot, ms, mt); xform(tc, cos_ang, sin_ang, os, ot, ms, mt);
} }
*dst++ = tc; *dst++ = tc;
if (do_bump) if (!mat && do_bump)
{ {
bump_tc.push_back(tc); bump_tc.push_back(tc);
} }
......
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