Diligent Engine API Reference
|
Implementation of the Diligent::ITextureViewGL interface. More...
Public Member Functions | |
virtual void | QueryInterface (const Diligent::INTERFACE_ID &IID, IObject **ppInterface) override |
Queries the specific interface, see IObject::QueryInterface() for details. | |
void | GenerateMips (IDeviceContext *pContext) override |
Generates a mipmap chain. More... | |
Public Member Functions inherited from Diligent::TextureViewBase< ITextureViewGL, FixedBlockMemoryAllocator > | |
TextureViewBase (FixedBlockMemoryAllocator &ObjAllocator, IRenderDevice *pDevice, const TextureViewDesc &ViewDesc, class ITexture *pTexture, bool bIsDefaultView) | |
virtual void | SetSampler (class ISampler *pSampler) override final |
Implementation of ITextureView::SetSampler() | |
virtual ISampler * | GetSampler () override final |
Implementation of ITextureView::GetSampler() | |
virtual ITexture * | GetTexture () override final |
Implementation of ITextureView::GetTexture() | |
Public Member Functions inherited from Diligent::DeviceObjectBase< ITextureViewGL, TextureViewDesc, FixedBlockMemoryAllocator > | |
DeviceObjectBase (FixedBlockMemoryAllocator &ObjAllocator, class IRenderDevice *pDevice, const TextureViewDesc &ObjDesc, IObject *pOwner=nullptr, bool bIsDeviceInternal=false) | |
virtual const TextureViewDesc & | GetDesc () const override final |
UniqueIdentifier | GetUniqueID () const |
Returns unique identifier. More... | |
Public Member Functions inherited from Diligent::RefCountedObject< ITextureViewGL, FixedBlockMemoryAllocator > | |
virtual IReferenceCounters * | GetReferenceCounters () const override final |
virtual Atomics::Long | AddRef () override |
virtual Atomics::Long | Release () override |
Additional Inherited Members | |
Protected Attributes inherited from Diligent::TextureViewBase< ITextureViewGL, FixedBlockMemoryAllocator > | |
Diligent::RefCntAutoPtr< ISampler > | m_pSampler |
Strong reference to the sampler. | |
ITexture * | m_pTexture |
Raw pointer to the texture. | |
Diligent::RefCntAutoPtr< ITexture > | m_spTexture |
Strong reference to the texture. Used for non-default views to keep the texture alive. | |
Protected Attributes inherited from Diligent::DeviceObjectBase< ITextureViewGL, TextureViewDesc, FixedBlockMemoryAllocator > | |
const String | m_ObjectNameCopy |
Copy of a device object name. More... | |
TextureViewDesc | m_Desc |
Object description. | |
Implementation of the Diligent::ITextureViewGL interface.
|
overridevirtual |
Generates a mipmap chain.
Implements Diligent::ITextureView.