mirror of
https://github.com/overte-org/overte.git
synced 2025-08-10 15:53:28 +02:00
Add comment on storage texture ptr
This commit is contained in:
parent
7b49552066
commit
5c004e2a5c
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ public:
|
||||||
Stamp bumpStamp() { return ++_stamp; }
|
Stamp bumpStamp() { return ++_stamp; }
|
||||||
protected:
|
protected:
|
||||||
Stamp _stamp = 0;
|
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
|
Texture::Type _type = Texture::TEX_2D; // The type of texture is needed to know the number of faces to expect
|
||||||
std::vector<std::vector<PixelsPointer>> _mips; // an array of mips, each mip is an array of faces
|
std::vector<std::vector<PixelsPointer>> _mips; // an array of mips, each mip is an array of faces
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue