diff options
author | simon <none@none> | 2013-04-24 09:35:38 -0700 |
---|---|---|
committer | simon <none@none> | 2013-04-24 09:35:38 -0700 |
commit | 87ba85eaabbfd5fd7ad8ca8136f4783b1d932264 (patch) | |
tree | e35d6306aef3bfcebbbdb3112458a686e6d28aad /indra/llrender | |
parent | de34ab57cbd29fecc29066a59869dc8cba621561 (diff) |
diff -r 59c7bed66dfd indra/llcommon/lleventapi.h
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/llgl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llrender/llgl.h b/indra/llrender/llgl.h index 133c2de1f5..823de9d361 100644 --- a/indra/llrender/llgl.h +++ b/indra/llrender/llgl.h @@ -350,10 +350,10 @@ public: Generic pooling scheme for things which use GL names (used for occlusion queries and vertex buffer objects). Prevents thrashing of GL name caches by avoiding calls to glGenFoo and glDeleteFoo. */ -class LLGLNamePool : public INSTANCE_TRACKER(LLGLNamePool) +class LLGLNamePool : public LLInstanceTracker<LLGLNamePool> { public: - typedef INSTANCE_TRACKER(LLGLNamePool) tracker_t; + typedef LLInstanceTracker<LLGLNamePool> tracker_t; struct NameEntry { |