class Enlighten::IBakeTextureManager
Interface for providing and caching textures.
Functions
Name | Description |
---|---|
GetTexture(const GeoTextureString &) | Request a texture from the manager, implementations should cache this returned value for future requests. |
NonCopyable(NonCopyable &&) | Defaulted to allow move. |
operator=(NonCopyable &&) | Defaulted to allow move. |
Release() | Free this object that was created within the Enlighten libraries. |
Anchor | ||||
---|---|---|---|---|
|
virtual const BakeInputTexture* Enlighten::IBakeTextureManager::GetTexture
...
public: const BakeInputTexture * GetTexture
(
const GeoTextureString & textureIdentifier
) const
...
Request a texture from the manager, implementations should cache this returned value for future requests.
Anchor | ||||
---|---|---|---|---|
|
Geo::NonCopyable::NonCopyable
...
public: NonCopyable
(
NonCopyable &&
)
...
Defaulted to allow move.
Anchor | ||||
---|---|---|---|---|
|
NonCopyable& Geo::NonCopyable::operator=
...
public: NonCopyable & operator=
(
NonCopyable &&
)
...
Defaulted to allow move.
Anchor | ||||
---|---|---|---|---|
|
virtual void Geo::IGeoReleasable::Release
...
public: void Release()
...
Free this object that was created within the Enlighten libraries.
Expect this to behave in a similar way to calling 'delete(this)'