From 5c004e2a5cf0e5aed584196d552f728aaf892a28 Mon Sep 17 00:00:00 2001 From: Zach Pomerantz Date: Fri, 15 Apr 2016 13:50:46 -0700 Subject: [PATCH] Add comment on storage texture ptr --- libraries/gpu/src/gpu/Texture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/gpu/src/gpu/Texture.h b/libraries/gpu/src/gpu/Texture.h index 9dde359596..70b26e38a6 100755 --- a/libraries/gpu/src/gpu/Texture.h +++ b/libraries/gpu/src/gpu/Texture.h @@ -260,7 +260,7 @@ public: Stamp bumpStamp() { return ++_stamp; } protected: Stamp _stamp = 0; - Texture* _texture = nullptr; + Texture* _texture = nullptr; // Points to the parent texture (not owned) Texture::Type _type = Texture::TEX_2D; // The type of texture is needed to know the number of faces to expect std::vector> _mips; // an array of mips, each mip is an array of faces