|
Revision 13041, 2.5 kB
(checked in by robert, 14 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | #include "AttrData.h" |
|---|
| 21 | |
|---|
| 22 | using namespace flt; |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | AttrData::AttrData() : |
|---|
| 26 | texels_u(0), |
|---|
| 27 | texels_v(0), |
|---|
| 28 | direction_u(0), |
|---|
| 29 | direction_v(0), |
|---|
| 30 | x_up(0), |
|---|
| 31 | y_up(0), |
|---|
| 32 | fileFormat(-1), |
|---|
| 33 | minFilterMode(MIN_FILTER_NONE), |
|---|
| 34 | magFilterMode(MAG_FILTER_POINT), |
|---|
| 35 | wrapMode(WRAP_REPEAT), |
|---|
| 36 | wrapMode_u(WRAP_REPEAT), |
|---|
| 37 | wrapMode_v(WRAP_REPEAT), |
|---|
| 38 | modifyFlag(0), |
|---|
| 39 | pivot_x(0), |
|---|
| 40 | pivot_y(0), |
|---|
| 41 | texEnvMode(TEXENV_MODULATE), |
|---|
| 42 | intensityAsAlpha(0), |
|---|
| 43 | size_u(0), |
|---|
| 44 | size_v(0), |
|---|
| 45 | originCode(0), |
|---|
| 46 | kernelVersion(0), |
|---|
| 47 | intFormat(0), |
|---|
| 48 | extFormat(0), |
|---|
| 49 | |
|---|
| 50 | useMips(0), |
|---|
| 51 | |
|---|
| 52 | useLodScale(0), |
|---|
| 53 | lod0(0.0f), |
|---|
| 54 | scale0(1.0f), |
|---|
| 55 | lod1(0.0f), |
|---|
| 56 | scale1(1.0f), |
|---|
| 57 | lod2(0.0f), |
|---|
| 58 | scale2(1.0f), |
|---|
| 59 | lod3(0.0f), |
|---|
| 60 | scale3(1.0f), |
|---|
| 61 | lod4(0.0f), |
|---|
| 62 | scale4(1.0f), |
|---|
| 63 | lod5(0.0f), |
|---|
| 64 | scale5(1.0f), |
|---|
| 65 | lod6(0.0f), |
|---|
| 66 | scale6(1.0f), |
|---|
| 67 | lod7(0.0f), |
|---|
| 68 | scale7(1.0f), |
|---|
| 69 | |
|---|
| 70 | clamp(0), |
|---|
| 71 | magFilterAlpha(2), |
|---|
| 72 | magFilterColor(2), |
|---|
| 73 | lambertMeridian(0), |
|---|
| 74 | lambertUpperLat(0), |
|---|
| 75 | lambertlowerLat(0), |
|---|
| 76 | useDetail(0), |
|---|
| 77 | txDetail_j(0), |
|---|
| 78 | txDetail_k(0), |
|---|
| 79 | txDetail_m(0), |
|---|
| 80 | txDetail_n(0), |
|---|
| 81 | txDetail_s(0), |
|---|
| 82 | useTile(0), |
|---|
| 83 | txTile_ll_u(0), |
|---|
| 84 | txTile_ll_v(0), |
|---|
| 85 | txTile_ur_u(0), |
|---|
| 86 | txTile_ur_v(0), |
|---|
| 87 | projection(PROJECTION_UNDEFINED), |
|---|
| 88 | earthModel(DATUM_WGS84), |
|---|
| 89 | utmZone(0), |
|---|
| 90 | imageOrigin(0), |
|---|
| 91 | geoUnits(0), |
|---|
| 92 | hemisphere(1), |
|---|
| 93 | comments(""), |
|---|
| 94 | attrVersion(0), |
|---|
| 95 | controlPoints(0) |
|---|
| 96 | |
|---|
| 97 | { |
|---|
| 98 | of_mips[0]=of_mips[1]=of_mips[2]=of_mips[3]=of_mips[4]=of_mips[5]=of_mips[6]=of_mips[7]=0.0f; |
|---|
| 99 | } |
|---|
| 100 | |
|---|
| 101 | AttrData::AttrData(const AttrData& attr, const osg::CopyOp& copyop) : |
|---|
| 102 | osg::Object(attr,copyop) |
|---|
| 103 | {} |
|---|