summaryrefslogtreecommitdiff
path: root/indra/llrender/llrendersegment.h
diff options
context:
space:
mode:
authorprep <prep@lindenlab.com>2011-12-01 11:38:16 -0500
committerprep <prep@lindenlab.com>2011-12-01 11:38:16 -0500
commit0539b08370392385831f631fbdd8cb41977636b9 (patch)
tree0dd3d3df90004c286f462db2d0325ab013daefa7 /indra/llrender/llrendersegment.h
parent0538dcf62e3c13b50fc0828e930fa50e4050302d (diff)
Renamed segment rendering class into RenderNavPrim
Diffstat (limited to 'indra/llrender/llrendersegment.h')
-rw-r--r--indra/llrender/llrendersegment.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/indra/llrender/llrendersegment.h b/indra/llrender/llrendersegment.h
deleted file mode 100644
index 58bc083e25..0000000000
--- a/indra/llrender/llrendersegment.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/**
- * @file llrendersegment.h
- * @brief
- *
- * $LicenseInfo:firstyear=2001&license=viewerlgpl$
- * Second Life Viewer Source Code
- * Copyright (C) 2010, Linden Research, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation;
- * version 2.1 of the License only.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
- * $/LicenseInfo$
- */
-
-#ifndef LL_LLRENDERSEGMENT_H
-#define LL_LLRENDERSEGMENT_H
-
-#include "llmath.h"
-#include "v3math.h"
-#include "v4math.h"
-#include "m3math.h"
-#include "m4math.h"
-#include "v4color.h"
-#include "llgl.h"
-
-
-class LLRenderSegment
-{
-public:
- void renderSegment( const LLVector3& start, const LLVector3& end, int color );
- void renderTri( const LLVector3& a, const LLVector3& b, const LLVector3& c, int color );
-
-private:
-};
-
-extern LLRenderSegment gSegment;
-
-#endif