blob: 47f4780009d38ed1461779426fdae6cedf1191ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/**
* @file llviewerlayer.h
* @brief LLViewerLayer class header file
*
* Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLVIEWERLAYER_H
#define LL_LLVIEWERLAYER_H
// Viewer-side representation of a layer...
class LLViewerLayer
{
public:
LLViewerLayer(const S32 width, const F32 scale = 1.f);
virtual ~LLViewerLayer();
F32 getValueScaled(const F32 x, const F32 y) const;
protected:
F32 getValue(const S32 x, const S32 y) const;
protected:
S32 mWidth;
F32 mScale;
F32 mScaleInv;
F32 *mDatap;
};
#endif // LL_LLVIEWERLAYER_H
|