Skip to content
Snippets Groups Projects
Commit a3b4a8a7 authored by Mnikolenko ProductEngine's avatar Mnikolenko ProductEngine
Browse files

MAINT-2560 reverted

parent 513fd3a6
No related branches found
No related tags found
No related merge requests found
...@@ -39,8 +39,7 @@ ...@@ -39,8 +39,7 @@
#include "llrendersphere.h" #include "llrendersphere.h"
#include "llselectmgr.h" #include "llselectmgr.h"
#include "llglheaders.h" #include "llglheaders.h"
#include "llfontgl.h"
#include "llhudrender.h"
#include "llxmltree.h" #include "llxmltree.h"
...@@ -497,15 +496,14 @@ void LLHUDEffectLookAt::render() ...@@ -497,15 +496,14 @@ void LLHUDEffectLookAt::render()
{ {
gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE); gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE);
LLVOAvatar* source_avatar = ((LLVOAvatar*)(LLViewerObject*)mSourceObject); LLVector3 target = mTargetPos + ((LLVOAvatar*)(LLViewerObject*)mSourceObject)->mHeadp->getWorldPosition();
LLVector3 target = mTargetPos + source_avatar->mHeadp->getWorldPosition();
gGL.matrixMode(LLRender::MM_MODELVIEW); gGL.matrixMode(LLRender::MM_MODELVIEW);
gGL.pushMatrix(); gGL.pushMatrix();
gGL.translatef(target.mV[VX], target.mV[VY], target.mV[VZ]); gGL.translatef(target.mV[VX], target.mV[VY], target.mV[VZ]);
gGL.scalef(0.3f, 0.3f, 0.3f); gGL.scalef(0.3f, 0.3f, 0.3f);
LLColor3 color = (*mAttentions)[mTargetType].mColor;
gGL.begin(LLRender::LINES); gGL.begin(LLRender::LINES);
{ {
LLColor3 color = (*mAttentions)[mTargetType].mColor;
gGL.color3f(color.mV[VRED], color.mV[VGREEN], color.mV[VBLUE]); gGL.color3f(color.mV[VRED], color.mV[VGREEN], color.mV[VBLUE]);
gGL.vertex3f(-1.f, 0.f, 0.f); gGL.vertex3f(-1.f, 0.f, 0.f);
gGL.vertex3f(1.f, 0.f, 0.f); gGL.vertex3f(1.f, 0.f, 0.f);
...@@ -517,17 +515,6 @@ void LLHUDEffectLookAt::render() ...@@ -517,17 +515,6 @@ void LLHUDEffectLookAt::render()
gGL.vertex3f(0.f, 0.f, 1.f); gGL.vertex3f(0.f, 0.f, 1.f);
} gGL.end(); } gGL.end();
gGL.popMatrix(); gGL.popMatrix();
if(!source_avatar->isSelf())
{
std::string av_name = source_avatar->getFullname();
const LLFontGL* big_fontp = LLFontGL::getFontSansSerif();
gGL.pushMatrix();
hud_render_utf8text(av_name,target+LLVector3(0.f,0.f,0.4f),*big_fontp,LLFontGL::NORMAL,LLFontGL::DROP_SHADOW_SOFT,-0.5*big_fontp->getWidthF32(av_name),3.f,color,FALSE);
gGL.popMatrix();
}
} }
} }
......
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