Skip to main content

Meta_RenderTarget

Module: Metanodes / Definitions

Public Types

TypeName
enumAttachment { Depth, Stencil, DepthStencil, Colour }
enumCubeMapFace { PosX, NegX, PosY, NegY, PosZ, NegZ }
enumIDX { Idx_Enabled, Idx_Attachment, Idx_Texture, Idx_MipLevel, Idx_Layer, Idx_Clear, Idx_ClearValue }

Public Functions

TypeName
Meta_RenderTarget()

Public Types Documentation

enum Attachment

EnumeratorValueDescription
Depthequivalent to GL_DEPTH_ATTACHMENT
Stencilequivalent to GL_STENCIL_ATTACHMENT
DepthStencilequivalent to GL_DEPTH_STENCIL_ATTACHMENT
Colourequivalent to GL_COLOR_ATTACHMENT0. Colour+1 is equivalent to GL_COLOR_ATTACHMENT1 and so on up to GPU's maximum supported colour attachments...

enum CubeMapFace

EnumeratorValueDescription
PosX
NegX
PosY
NegY
PosZ
NegZ

enum IDX

EnumeratorValueDescription
Idx_Enabled
Idx_Attachmentinteger attachment number (use Attachment enum for reference)
Idx_Texturelink to Meta_Texture to render into.
Idx_MipLevelinteger mipmap level of texture to render into.
Idx_Layerinteger texture layer to render into. If Idx_Texture is a cubemap this is the cubemap face to use (use CubeMapFace enum for reference) if Idx_Texture is a 3D texture this is the slice to use. Otherwise ignored.
Idx_Clearboolean indicating whether or not the render target should be cleared before rendering into it.
Idx_ClearValuethe value to clear the render target to. For a colour attachment this is 4 floats representing colour and alpha.

Public Functions Documentation

Meta_RenderTarget

inline Meta_RenderTarget()