OGRE-Next
4.0.0unstable
Object-Oriented Graphics Rendering Engine
|
#include <OgreHlmsComputeJob.h>
Public Types | |
enum | ThreadGroupsBasedOn { ThreadGroupsBasedOnNothing , ThreadGroupsBasedOnTexture , ThreadGroupsBasedOnUav } |
Public Types inherited from Ogre::TextureGpuListener | |
enum | Reason { Unknown , FromStorageToSysRam , FromSysRamToStorage , GainedResidency , LostResidency , PoolTextureSlotChanged , ResidentToSysRamSync , MetadataCacheOutOfDate , ExceptionThrown , FsaaSettingAlteredByApi , ReadyForRendering , Deleted } |
Public Member Functions | |
HlmsComputeJob (IdString name, Hlms *creator, const String &sourceFilename, const StringVector &includedPieceFiles) | |
~HlmsComputeJob () override | |
void | _calculateNumThreadGroupsBasedOnSetting () |
INTERNAL USE. More... | |
uint8 | _getRawGlTexSlotStart () const |
ShaderParams * | _getShaderParams (IdString key) |
Gets a shader parameter with the given key. More... | |
void | _setSamplerblock (uint8 slotIdx, const HlmsSamplerblock *refParams) |
Sets a samplerblock directly. More... | |
void | _setUavBuffer (uint8 slotIdx, const DescriptorSetUav::BufferSlot &newSlot) |
Sets an UAV buffer at the given slot ID. More... | |
void | _setUavTexture (uint8 slotIdx, const DescriptorSetUav::TextureSlot &texSlot) |
Sets an UAV texture. More... | |
void | _updateAutoProperties () |
void | analyzeBarriers (ResourceTransitionArray &resourceTransitions, bool clearBarriers=true) |
Checks every regular texture and every UAV (texture and buffers) bound and resolves transitions. More... | |
void | clearTexBuffers () |
Sets all texture buffers to nullptr. More... | |
void | clearUavBuffers () |
Sets all UAV buffers to nullptr. More... | |
HlmsComputeJob * | clone (const String &cloneName) |
void | cloneTo (HlmsComputeJob *dstJob) |
void | createShaderParams (IdString key) |
Creates a set of shader paramters with a given key, e.g. More... | |
Hlms * | getCreator () const |
uint8 | getGlTexSlotStart () const |
IdString | getName () const |
String | getNameStr () const |
size_t | getNumSamplerUnits () const |
See setNumSamplerUnits. More... | |
size_t | getNumTexUnits () const |
const uint32 * | getNumThreadGroups () const |
uint32 | getNumThreadGroupsX () const |
uint32 | getNumThreadGroupsY () const |
uint32 | getNumThreadGroupsZ () const |
size_t | getNumUavUnits () const |
int32 | getProperty (IdString key, int32 defaultVal=0) const |
ShaderParams & | getShaderParams (IdString key) |
Gets a shader parameter with the given key. More... | |
TextureGpu * | getTexture (uint8 slotIdx) const |
const uint32 * | getThreadsPerGroup () const |
uint32 | getThreadsPerGroupX () const |
uint32 | getThreadsPerGroupY () const |
uint32 | getThreadsPerGroupZ () const |
UavBufferPacked * | getUavBuffer (uint8 slotIdx) const |
TextureGpu * | getUavTexture (uint8 slotIdx) const |
void | notifyTextureChanged (TextureGpu *texture, TextureGpuListener::Reason reason, void *extraData) override |
Called when a TextureGpu changed in a way that affects how it is displayed: More... | |
void | removePiece (IdString pieceName) |
Removes an existing piece. More... | |
void | removeTexUnit (uint8 slotIdx) |
Destroys a given texture unit, displacing all the higher tex units. More... | |
void | removeUavUnit (uint8 slotIdx) |
Destroys a given texture unit, displacing all the higher tex units. More... | |
void | setConstBuffer (uint8 slotIdx, ConstBufferPacked *constBuffer) |
Sets a const/uniform bufferat the given slot ID. More... | |
void | setGlTexSlotStart (uint8 texSlotStart) |
By default HlmsComputeJob::setTexture and HlmsComputeJob::setTexBuffer are in range [0; getNumTexUnits) More... | |
void | setInformHlmsOfTextureData (bool bInformHlms) |
The Hlms has the ability to pass data to the shader source code via its syntax system to add hardcoded values. More... | |
void | setNumSamplerUnits (uint8 numSlots) |
This value is overriden by setNumTexUnits to be compatible with OpenGL. More... | |
void | setNumTexUnits (uint8 numSlots) |
Creates 'numSlots' number of slots before they can be set. More... | |
void | setNumThreadGroups (uint32 numThreadGroupsX, uint32 numThreadGroupsY, uint32 numThreadGroupsZ) |
Sets the number of groups of threads to dispatch. More... | |
void | setNumThreadGroupsBasedOn (ThreadGroupsBasedOn source, uint8 texSlot, uint8 divisorX, uint8 divisorY, uint8 divisorZ) |
Instead of calling setNumThreadGroups, Ogre can automatically deduce them based on the Texture resolution and the threads per group. More... | |
void | setNumUavUnits (uint8 numSlots) |
Creates 'numSlots' number of slots before they can be set. More... | |
void | setPiece (IdString pieceName, const String &pieceContent) |
Defines a piece, i.e. More... | |
void | setProperty (IdString key, int32 value) |
Sets an arbitrary property to pass to the shader. More... | |
void | setSamplerblock (uint8 slotIdx, const HlmsSamplerblock &refParams) |
Sets a samplerblock based on reference parameters. More... | |
void | setTexBuffer (uint8 slotIdx, const DescriptorSetTexture2::BufferSlot &newSlot) |
Sets a texture buffer at the given slot ID. More... | |
void | setTexture (uint8 slotIdx, const DescriptorSetTexture2::TextureSlot &newSlot, const HlmsSamplerblock *refParams=0, bool bSetSampler=true) |
Sets a texture buffer at the given slot ID. More... | |
void | setThreadsPerGroup (uint32 threadsPerGroupX, uint32 threadsPerGroupY, uint32 threadsPerGroupZ) |
Sets the number of threads per group. More... | |
void | setupRootLayout (RootLayout &rootLayout) |
Public Member Functions inherited from Ogre::TextureGpuListener | |
virtual | ~TextureGpuListener () |
virtual bool | shouldStayLoaded (TextureGpu *texture) |
Return true if this TextureGpu should likely stay loaded or else graphical changes could occur. More... | |
Ogre::HlmsComputeJob::HlmsComputeJob | ( | IdString | name, |
Hlms * | creator, | ||
const String & | sourceFilename, | ||
const StringVector & | includedPieceFiles | ||
) |
|
override |
void Ogre::HlmsComputeJob::_calculateNumThreadGroupsBasedOnSetting | ( | ) |
INTERNAL USE.
Calculates the number of thread groups as specified in setNumThreadGroupsBasedOn, overriding setNumThreadGroups.
uint8 Ogre::HlmsComputeJob::_getRawGlTexSlotStart | ( | ) | const |
ShaderParams* Ogre::HlmsComputeJob::_getShaderParams | ( | IdString | key | ) |
Gets a shader parameter with the given key.
e.g. "default" "glsl" "hlsl". Returns null if doesn't exist. See createShaderParams
void Ogre::HlmsComputeJob::_setSamplerblock | ( | uint8 | slotIdx, |
const HlmsSamplerblock * | refParams | ||
) |
Sets a samplerblock directly.
For internal use / advanced users.
slotIdx | See setNumTexUnits. |
Must be in range [0; getNumTexUnits) regardless of what getTexSlotStart is
refParams | Direct samplerblock. Reference count is assumed to already have been increased. We won't increase it ourselves. |
params | The sampler block to use as reference. |
void Ogre::HlmsComputeJob::_setUavBuffer | ( | uint8 | slotIdx, |
const DescriptorSetUav::BufferSlot & | newSlot | ||
) |
Sets an UAV buffer at the given slot ID.
slotIdx | See setNumUavUnits. The slot index to bind this UAV buffer. |
newSlot |
void Ogre::HlmsComputeJob::_setUavTexture | ( | uint8 | slotIdx, |
const DescriptorSetUav::TextureSlot & | texSlot | ||
) |
Sets an UAV texture.
slot | See setNumUavUnits. |
void Ogre::HlmsComputeJob::_updateAutoProperties | ( | ) |
void Ogre::HlmsComputeJob::analyzeBarriers | ( | ResourceTransitionArray & | resourceTransitions, |
bool | clearBarriers = true |
||
) |
Checks every regular texture and every UAV (texture and buffers) bound and resolves transitions.
resourceTransitions |
void Ogre::HlmsComputeJob::clearTexBuffers | ( | ) |
Sets all texture buffers to nullptr.
void Ogre::HlmsComputeJob::clearUavBuffers | ( | ) |
Sets all UAV buffers to nullptr.
HlmsComputeJob* Ogre::HlmsComputeJob::clone | ( | const String & | cloneName | ) |
void Ogre::HlmsComputeJob::cloneTo | ( | HlmsComputeJob * | dstJob | ) |
void Ogre::HlmsComputeJob::createShaderParams | ( | IdString | key | ) |
Creates a set of shader paramters with a given key, e.g.
"default" "glsl" "hlsl". Does nothing if parameters already exist.
|
inline |
uint8 Ogre::HlmsComputeJob::getGlTexSlotStart | ( | ) | const |
|
inline |
String Ogre::HlmsComputeJob::getNameStr | ( | ) | const |
|
inline |
See setNumSamplerUnits.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
ShaderParams& Ogre::HlmsComputeJob::getShaderParams | ( | IdString | key | ) |
Gets a shader parameter with the given key.
e.g. "default" "glsl" "hlsl". Creates if does not exist.
TextureGpu* Ogre::HlmsComputeJob::getTexture | ( | uint8 | slotIdx | ) | const |
|
inline |
|
inline |
|
inline |
|
inline |
UavBufferPacked* Ogre::HlmsComputeJob::getUavBuffer | ( | uint8 | slotIdx | ) | const |
TextureGpu* Ogre::HlmsComputeJob::getUavTexture | ( | uint8 | slotIdx | ) | const |
|
overridevirtual |
Called when a TextureGpu changed in a way that affects how it is displayed:
Implements Ogre::TextureGpuListener.
void Ogre::HlmsComputeJob::removePiece | ( | IdString | pieceName | ) |
Removes an existing piece.
See setPiece. Does nothing if the piece didn't exist.
void Ogre::HlmsComputeJob::removeTexUnit | ( | uint8 | slotIdx | ) |
Destroys a given texture unit, displacing all the higher tex units.
void Ogre::HlmsComputeJob::removeUavUnit | ( | uint8 | slotIdx | ) |
Destroys a given texture unit, displacing all the higher tex units.
void Ogre::HlmsComputeJob::setConstBuffer | ( | uint8 | slotIdx, |
ConstBufferPacked * | constBuffer | ||
) |
Sets a const/uniform bufferat the given slot ID.
slotIdx | Slot to bind to. It's independent from the texture & UAV ones. |
constBuffer | Const buffer to bind. |
void Ogre::HlmsComputeJob::setGlTexSlotStart | ( | uint8 | texSlotStart | ) |
By default HlmsComputeJob::setTexture and HlmsComputeJob::setTexBuffer are in range [0; getNumTexUnits)
However this allows you to offset the range to [texSlotStart; texSlotStart + getNumTexUnits)
This is useful when ReadOnlyBuffers are bound via setTexBuffers, because in OpenGL these will map to uav buffer slots, thus overlapping/conflicting with UAVs
texSlotStart | The offset at which the textures/texbuffers should start being bound |
void Ogre::HlmsComputeJob::setInformHlmsOfTextureData | ( | bool | bInformHlms | ) |
The Hlms has the ability to pass data to the shader source code via its syntax system to add hardcoded values.
For example, you may want to unroll a loop based on the width of a texture for maximum performance.
bInformHlms | True to enable this feature, false to disable. |
void Ogre::HlmsComputeJob::setNumSamplerUnits | ( | uint8 | numSlots | ) |
This value is overriden by setNumTexUnits to be compatible with OpenGL.
However you can later override this behavior to minimize the number of samplers by shrinking (or enlarging?) the sampler units.
This is an advanced function. Don't use it unless you're careful not to assume 1 tex unit = 1 sampler unit
void Ogre::HlmsComputeJob::setNumTexUnits | ( | uint8 | numSlots | ) |
Creates 'numSlots' number of slots before they can be set.
void Ogre::HlmsComputeJob::setNumThreadGroups | ( | uint32 | numThreadGroupsX, |
uint32 | numThreadGroupsY, | ||
uint32 | numThreadGroupsZ | ||
) |
Sets the number of groups of threads to dispatch.
Note the actual value may be changed by the shader template using the @pset() function. These values are passed to the template as:
void Ogre::HlmsComputeJob::setNumThreadGroupsBasedOn | ( | ThreadGroupsBasedOn | source, |
uint8 | texSlot, | ||
uint8 | divisorX, | ||
uint8 | divisorY, | ||
uint8 | divisorZ | ||
) |
Instead of calling setNumThreadGroups, Ogre can automatically deduce them based on the Texture resolution and the threads per group.
It is calculated as follows: scaledWidth = (textureWidth + divisorX - 1u) / divisorX; numThreadGroupsX = (scaledWidth + threadsPerGroupX - 1u) / threadsPerGroupX;
source | What to use as source for the calculations. See ThreadGroupsBasedOn |
texSlot | Index of the texture/uav unit. |
divisorX | divisorY divisorZ Often compute shaders operate on multiple pixels, thus you need less thread groups. For example if you operate on blocks of 2x2, then you want divisorX = 2 and divisorY = 2. |
void Ogre::HlmsComputeJob::setNumUavUnits | ( | uint8 | numSlots | ) |
Creates 'numSlots' number of slots before they can be set.
Defines a piece, i.e.
the same as doing @piece( pieceName )pieceContent@end If the piece doesn't exist, it gets created. If the piece already exists, it gets overwritten.
pieceName | Name of the piece. |
pieceContent | The contents of the piece. |
Sets an arbitrary property to pass to the shader.
key | Name of the property |
value | Value to set |
void Ogre::HlmsComputeJob::setSamplerblock | ( | uint8 | slotIdx, |
const HlmsSamplerblock & | refParams | ||
) |
Sets a samplerblock based on reference parameters.
slotIdx | See setNumTexUnits. |
Must be in range [0; getNumTexUnits) regardless of what getTexSlotStart is
refParams | We'll create (or retrieve an existing) samplerblock based on the input parameters. |
void Ogre::HlmsComputeJob::setTexBuffer | ( | uint8 | slotIdx, |
const DescriptorSetTexture2::BufferSlot & | newSlot | ||
) |
Sets a texture buffer at the given slot ID.
See HlmsComputeJob::setTexSlotStart to workaround that
slotIdx | See setNumTexUnits. The slot index to bind this texture buffer In OpenGL, a few cards support between to 16-18 texture units, while most cards support up to 32 |
Must be in range [0; getNumTexUnits) regardless of what getTexSlotStart is
newSlot |
void Ogre::HlmsComputeJob::setTexture | ( | uint8 | slotIdx, |
const DescriptorSetTexture2::TextureSlot & | newSlot, | ||
const HlmsSamplerblock * | refParams = 0 , |
||
bool | bSetSampler = true |
||
) |
Sets a texture buffer at the given slot ID.
slotIdx | See setNumTexUnits. The slot index to bind this texture In OpenGL, some cards support up to 16-18 texture units, while most cards support up to 32 |
Must be in range [0; getNumTexUnits) regardless of what getTexSlotStart is
samplerblock | Optional. We'll create (or retrieve an existing) samplerblock based on the input parameters. When null, we leave the previously set samplerblock (if a texture is being set, and if no samplerblock was set, we'll create a default one) |
bSetSampler | If true, samplerblock will behave as described. When false and samplerblock is nullptr, we won't touch the samplerblock. Only use this with APIs that have separate texturse & sampler (e.g. everyone except GL) |
void Ogre::HlmsComputeJob::setThreadsPerGroup | ( | uint32 | threadsPerGroupX, |
uint32 | threadsPerGroupY, | ||
uint32 | threadsPerGroupZ | ||
) |
Sets the number of threads per group.
Note the actual value may be changed by the shader template using the @pset() function. These values are passed to the template as:
void Ogre::HlmsComputeJob::setupRootLayout | ( | RootLayout & | rootLayout | ) |