aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/meta7windlight.h
diff options
context:
space:
mode:
authorJacek Antonelli2010-07-27 04:08:19 -0500
committerJacek Antonelli2010-08-01 00:30:59 -0500
commite4475e45edde706332718908b1ebbef924c44b4f (patch)
tree496e051b768f1b1344b96418bba773f577c3b298 /linden/indra/newview/meta7windlight.h
parentFixed a Linden typo that made the object cache useless. (SNOW-783) (diff)
downloadmeta-impy-e4475e45edde706332718908b1ebbef924c44b4f.zip
meta-impy-e4475e45edde706332718908b1ebbef924c44b4f.tar.gz
meta-impy-e4475e45edde706332718908b1ebbef924c44b4f.tar.bz2
meta-impy-e4475e45edde706332718908b1ebbef924c44b4f.tar.xz
Refactored a bunch of messy LightShare code.
Diffstat (limited to 'linden/indra/newview/meta7windlight.h')
-rw-r--r--linden/indra/newview/meta7windlight.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/linden/indra/newview/meta7windlight.h b/linden/indra/newview/meta7windlight.h
index 9927558..04ce86d 100644
--- a/linden/indra/newview/meta7windlight.h
+++ b/linden/indra/newview/meta7windlight.h
@@ -1,3 +1,36 @@
1/**
2 * @file lightshare.cpp
3 * @brief Handler for Meta7 Lightshare (region-side Windlight settings).
4 *
5 * Copyright (c) 2010, Tom Meta / Meta7 Project
6 *
7 * The source code in this file ("Source Code") is provided to you
8 * under the terms of the GNU General Public License, version 2.0
9 * ("GPL"). Terms of the GPL can be found in doc/GPL-license.txt in
10 * this distribution, or online at
11 * http://secondlifegrid.net/programs/open_source/licensing/gplv2
12 *
13 * There are special exceptions to the terms and conditions of the GPL as
14 * it is applied to this Source Code. View the full text of the exception
15 * in the file doc/FLOSS-exception.txt in this software distribution, or
16 * online at
17 * http://secondlifegrid.net/programs/open_source/licensing/flossexception
18 *
19 * By copying, modifying or distributing this software, you acknowledge
20 * that you have read and understood your obligations described above,
21 * and agree to abide by those obligations.
22 *
23 * ALL SOURCE CODE IS PROVIDED "AS IS." THE AUTHOR MAKES NO
24 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
25 * COMPLETENESS OR PERFORMANCE.
26 */
27
28
29#ifndef META7WINDLIGHT_H
30#define META7WINDLIGHT_H
31
32#include "linden_common.h"
33
1struct M7Color3{ 34struct M7Color3{
2 M7Color3(){}; 35 M7Color3(){};
3 M7Color3(F32 pRed, F32 pGreen, F32 pBlue) 36 M7Color3(F32 pRed, F32 pGreen, F32 pBlue)
@@ -94,3 +127,5 @@ struct Meta7WindlightPacket {
94 127
95 128
96}; 129};
130
131#endif