diff options
author | Dave Parks <davep@lindenlab.com> | 2011-12-21 15:55:14 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-12-21 15:55:14 -0600 |
commit | 5546041301a67da6e471a433b29374bc75a4f0d0 (patch) | |
tree | 346e708da08c1d469a89adef6764851e99ea861c /indra/newview/llvosurfacepatch.cpp | |
parent | 5affaf264da937cdf825bf174c3905a6063b5336 (diff) |
SH-2794 WIP -- work on getting glMapBuffer and friends to behave
Diffstat (limited to 'indra/newview/llvosurfacepatch.cpp')
-rw-r--r-- | indra/newview/llvosurfacepatch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvosurfacepatch.cpp b/indra/newview/llvosurfacepatch.cpp index c3a2e6a712..bf6158eeaf 100644 --- a/indra/newview/llvosurfacepatch.cpp +++ b/indra/newview/llvosurfacepatch.cpp @@ -65,7 +65,7 @@ public: return; } - U8* base = useVBOs() ? (U8*) mAlignedOffset : mMappedData; + volatile U8* base = useVBOs() ? (U8*) mAlignedOffset : mMappedData; //assume tex coords 2 and 3 are present U32 type_mask = mTypeMask | MAP_TEXCOORD2 | MAP_TEXCOORD3; |