This is the documentation for Enlighten.

class Enlighten IGpuTexture

class Enlighten::IGpuTexture

    └>Geo::IGeoReleasable

IGpuTexture is the main interface used by the HLRT to keep track of output textures.

It is a wrapper around the IGpuTextureUpdater interface to allow users the option to derive classes from this interface without having to supply the full texture updater implementation. (This is what the GeoViewer and GeoRadiosity applications do.)

Functions

Name Description
GetUpdater()

Gets the underlying updater interface.

NonCopyable(NonCopyable &&)

Defaulted to allow move.

operator=(NonCopyable &&)

Defaulted to allow move.

Release()

Free this object that was created within the Enlighten libraries.


virtual IGpuTextureUpdater* Enlighten::IGpuTexture::GetUpdater


public: IGpuTextureUpdater * GetUpdater()


Gets the underlying updater interface.


Geo::NonCopyable::NonCopyable


public: NonCopyable
(
    NonCopyable &&
)


Defaulted to allow move.


NonCopyable& Geo::NonCopyable::operator=


public: NonCopyable & operator=
(
    NonCopyable &&
)


Defaulted to allow move.


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)'