OGRE 2.3.3
Object-Oriented Graphics Rendering Engine
Loading...
Searching...
No Matches
Ogre::VulkanRenderPassDescriptor Class Reference

#include <OgreVulkanRenderPassDescriptor.h>

+ Inheritance diagram for Ogre::VulkanRenderPassDescriptor:

Public Types

enum  EntryTypes {
  Colour0 = 1u << 0u , Colour1 = 1u << 1u , Colour2 = 1u << 2u , Colour3 = 1u << 3u ,
  Colour4 = 1u << 4u , Colour5 = 1u << 5u , Colour6 = 1u << 6u , Colour7 = 1u << 7u ,
  Depth = 1u << 30u , Stencil = 1u << 31u , Colour = Colour0|Colour1|Colour2|Colour3|Colour4|Colour5|Colour6|Colour7 , All = Colour|Depth|Stencil
}
 

Public Member Functions

 VulkanRenderPassDescriptor (VulkanQueue *graphicsQueue, VulkanRenderSystem *renderSystem)
 
virtual ~VulkanRenderPassDescriptor ()
 
void checkWarnIfRtvWasFlushed (uint32 entriesToFlush)
 
virtual void entriesModified (uint32 entryTypes)
 Call this when you're done modified mColour.
 
void findAnyTexture (TextureGpu **outAnyTargetTexture, uint8 &outAnyMipLevel)
 Finds the first non-null texture and outputs it May return nullptr if nothing is bound.
 
virtual void getCustomAttribute (IdString name, void *pData, uint32 extraParam)
 
uint8 getNumColourEntries (void) const
 
bool hasAttachment (const TextureGpu *texture) const
 
virtual bool hasSameAttachments (const RenderPassDescriptor *otherPassDesc) const
 
bool hasStencilFormat (void) const
 Returns true if either Stencil is set, or if Depth is set with depth-stencil attachment.
 
void notifyRenderTextureNonResident (VulkanTextureGpu *texture)
 
void notifySwapchainCreated (VulkanWindow *window)
 
void notifySwapchainDestroyed (VulkanWindow *window)
 
void operator delete (void *ptr)
 
void operator delete (void *ptr, const char *, int, const char *)
 
void operator delete (void *ptr, void *)
 
void operator delete[] (void *ptr)
 
void operator delete[] (void *ptr, const char *, int, const char *)
 
voidoperator new (size_t sz)
 
voidoperator new (size_t sz, const char *file, int line, const char *func)
 operator new, with debug line info
 
voidoperator new (size_t sz, void *ptr)
 placement operator new
 
voidoperator new[] (size_t sz)
 
voidoperator new[] (size_t sz, const char *file, int line, const char *func)
 array operator new, with debug line info
 
void performLoadActions (bool renderingWasInterrupted)
 
void performStoreActions (bool isInterruptingRendering)
 
bool requiresTextureFlipping (void) const
 
virtual void setClearColour (const ColourValue &clearColour)
 Sets the clear colour to all entries.
 
virtual void setClearColour (uint8 idx, const ColourValue &clearColour)
 Sets the clear colour to specific entry.
 
virtual void setClearDepth (Real clearDepth)
 
virtual void setClearStencil (uint32 clearStencil)
 
uint32 willSwitchTo (VulkanRenderPassDescriptor *newDesc, bool warnIfRtvWasFlushed) const
 

Public Attributes

RenderPassColourTarget mColour [OGRE_MAX_MULTIPLE_RENDER_TARGETS]
 
RenderPassDepthTarget mDepth
 
bool mInformationOnly
 When true, beginRenderPassDescriptor & endRenderPassDescriptor won't actually load/store this pass descriptor; but will still set the mCurrentRenderPassDescriptor so we have required information by some passes.
 
bool mReadyWindowForPresent
 When true, if we have a RenderWindow among our colour entries, then this pass is the last one to render to it and should ready the surface for presentation/swapping.
 
RenderPassStencilTarget mStencil
 

Member Enumeration Documentation

◆ EntryTypes

Enumerator
Colour0 
Colour1 
Colour2 
Colour3 
Colour4 
Colour5 
Colour6 
Colour7 
Depth 
Stencil 
Colour 
All 

Constructor & Destructor Documentation

◆ VulkanRenderPassDescriptor()

Ogre::VulkanRenderPassDescriptor::VulkanRenderPassDescriptor ( VulkanQueue graphicsQueue,
VulkanRenderSystem renderSystem 
)

◆ ~VulkanRenderPassDescriptor()

virtual Ogre::VulkanRenderPassDescriptor::~VulkanRenderPassDescriptor ( )
virtual

Member Function Documentation

◆ checkWarnIfRtvWasFlushed()

void Ogre::RenderPassDescriptor::checkWarnIfRtvWasFlushed ( uint32  entriesToFlush)
inherited

◆ entriesModified()

virtual void Ogre::VulkanRenderPassDescriptor::entriesModified ( uint32  entryTypes)
virtual

Call this when you're done modified mColour.

Note there must be no gaps, e.g. mColour[1] is empty but mColour[0] & mColour[2] are not.

Remarks
Values that are modified by calling setClearColour et al don't need to call entriesModified. Prefer changing those values using those calls since it's faster.
Parameters
entryTypesBitmask. See EntryTypes

Reimplemented from Ogre::RenderPassDescriptor.

◆ findAnyTexture()

void Ogre::RenderPassDescriptor::findAnyTexture ( TextureGpu **  outAnyTargetTexture,
uint8 outAnyMipLevel 
)
inherited

Finds the first non-null texture and outputs it May return nullptr if nothing is bound.

◆ getCustomAttribute()

virtual void Ogre::RenderPassDescriptor::getCustomAttribute ( IdString  name,
void pData,
uint32  extraParam 
)
inlinevirtualinherited
Parameters
nameWhen it's set to "ID3D11RenderTargetView", extraParam must be in range [0;OGRE_MAX_MULTIPLE_RENDER_TARGETS) When it's set to "ID3D11DepthStencilView", extraParam can be any value
pDataOutput
extraParamSee name

Reimplemented in Ogre::D3D11RenderPassDescriptor.

◆ getNumColourEntries()

uint8 Ogre::RenderPassDescriptor::getNumColourEntries ( void  ) const
inlineinherited

◆ hasAttachment()

bool Ogre::RenderPassDescriptor::hasAttachment ( const TextureGpu texture) const
inherited

◆ hasSameAttachments()

virtual bool Ogre::RenderPassDescriptor::hasSameAttachments ( const RenderPassDescriptor otherPassDesc) const
virtualinherited

◆ hasStencilFormat()

bool Ogre::RenderPassDescriptor::hasStencilFormat ( void  ) const
inherited

Returns true if either Stencil is set, or if Depth is set with depth-stencil attachment.

◆ notifyRenderTextureNonResident()

void Ogre::VulkanRenderPassDescriptor::notifyRenderTextureNonResident ( VulkanTextureGpu texture)

◆ notifySwapchainCreated()

void Ogre::VulkanRenderPassDescriptor::notifySwapchainCreated ( VulkanWindow window)

◆ notifySwapchainDestroyed()

void Ogre::VulkanRenderPassDescriptor::notifySwapchainDestroyed ( VulkanWindow window)

◆ operator delete() [1/3]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void ptr)
inlineinherited

◆ operator delete() [2/3]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void ptr,
const char ,
int  ,
const char  
)
inlineinherited

◆ operator delete() [3/3]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void ptr,
void  
)
inlineinherited

◆ operator delete[]() [1/2]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void ptr)
inlineinherited

◆ operator delete[]() [2/2]

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void ptr,
const char ,
int  ,
const char  
)
inlineinherited

◆ operator new() [1/3]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz)
inlineinherited

◆ operator new() [2/3]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
const char file,
int  line,
const char func 
)
inlineinherited

operator new, with debug line info

◆ operator new() [3/3]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
void ptr 
)
inlineinherited

placement operator new

◆ operator new[]() [1/2]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz)
inlineinherited

◆ operator new[]() [2/2]

template<class Alloc >
void * Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz,
const char file,
int  line,
const char func 
)
inlineinherited

array operator new, with debug line info

◆ performLoadActions()

void Ogre::VulkanRenderPassDescriptor::performLoadActions ( bool  renderingWasInterrupted)

◆ performStoreActions()

void Ogre::VulkanRenderPassDescriptor::performStoreActions ( bool  isInterruptingRendering)

◆ requiresTextureFlipping()

bool Ogre::RenderPassDescriptor::requiresTextureFlipping ( void  ) const
inlineinherited

◆ setClearColour() [1/2]

virtual void Ogre::VulkanRenderPassDescriptor::setClearColour ( const ColourValue clearColour)
virtual

Sets the clear colour to all entries.

In some APIs may be faster than calling setClearColour( idx, clearColour ) for each entry individually.

Reimplemented from Ogre::RenderPassDescriptor.

◆ setClearColour() [2/2]

virtual void Ogre::VulkanRenderPassDescriptor::setClearColour ( uint8  idx,
const ColourValue clearColour 
)
virtual

Sets the clear colour to specific entry.

Reimplemented from Ogre::RenderPassDescriptor.

◆ setClearDepth()

virtual void Ogre::VulkanRenderPassDescriptor::setClearDepth ( Real  clearDepth)
virtual

Reimplemented from Ogre::RenderPassDescriptor.

◆ setClearStencil()

virtual void Ogre::VulkanRenderPassDescriptor::setClearStencil ( uint32  clearStencil)
virtual

Reimplemented from Ogre::RenderPassDescriptor.

◆ willSwitchTo()

uint32 Ogre::VulkanRenderPassDescriptor::willSwitchTo ( VulkanRenderPassDescriptor newDesc,
bool  warnIfRtvWasFlushed 
) const

Member Data Documentation

◆ mColour

RenderPassColourTarget Ogre::RenderPassDescriptor::mColour[OGRE_MAX_MULTIPLE_RENDER_TARGETS]
inherited

◆ mDepth

RenderPassDepthTarget Ogre::RenderPassDescriptor::mDepth
inherited

◆ mInformationOnly

bool Ogre::RenderPassDescriptor::mInformationOnly
inherited

When true, beginRenderPassDescriptor & endRenderPassDescriptor won't actually load/store this pass descriptor; but will still set the mCurrentRenderPassDescriptor so we have required information by some passes.

Examples of these are stencil passes.

◆ mReadyWindowForPresent

bool Ogre::RenderPassDescriptor::mReadyWindowForPresent
inherited

When true, if we have a RenderWindow among our colour entries, then this pass is the last one to render to it and should ready the surface for presentation/swapping.

After changing this flag you MUST call entriesModified( Colour );

This value will be automatically reset to false if no entry is a RenderWindow

◆ mStencil

RenderPassStencilTarget Ogre::RenderPassDescriptor::mStencil
inherited

The documentation for this class was generated from the following file: