Skip to main content

Meta_ViewShader

Module: Metanodes / Definitions

A ViewShader represents a shader object, expected to be used by a Meta_ViewFilter. More...

#include <meta_division.hpp>

Public Types

TypeName
enumIDX { Idx_SourceCode, Idx_Description, Idx_Target, Idx_StereoMode }
Property Index.
enumStereoMode { StereoMode_Any, StereoMode_MonoOnly, StereoMode_StereoOnly }
Values for Idx_StereoMode.
enumTarget { Target_Viewport, Target_ViewportAfterHDR, Target_Window }
Values for Idx_Target.

Detailed Description

struct Meta_ViewShader;

A ViewShader represents a shader object, expected to be used by a Meta_ViewFilter.

The inputs to the shader will be set by this nodes children, each of which are expected to be one of the Meta_ShaderABC metanodes (e.g. Meta_ShaderVec3f, Meta_ShaderSampler etc.).

Expected Implementation Details:-

When the SourceCode property changes a search for #pragma rex <param ... statements within it is initiated, which in turn will extract the expected inputs for the shader. Meta_MaterialPrameter nodes corresponding to these parameters will be created as children of the Meta_ViewShader with their defined default values, allowing the user to easily configure the shader from the property panel or a script. If these #pragma's are missing in the source the user will have to manually create the child Meta_MaterialParameter nodes and set their values.

Public Types Documentation

enum IDX

EnumeratorValueDescription
Idx_SourceCodestring - the source code of the shader. Usually a full GLSL shader but could be just a GLSL function used by a bigger shader.
Idx_Descriptionstring - friendly description of what the shader does, for presenting to the user.
Idx_TargetTarget (int)- determines when the shader runs and which buffers it has access to.
Idx_StereoModeStereoMode (int) - specifies whether the shader applies to mono or stereo views, or both.

Property Index.

enum StereoMode

EnumeratorValueDescription
StereoMode_AnyThe filter is applied regardless of whether stereo is enabled. (Symbols - C: "StereoModeAny", Lua: __ViewShader_StereoModeAny)
StereoMode_MonoOnlyThe filter is applied only when rendering in mono. (Symbols - C: "StereoModeMonoOnly", Lua: __ViewShader_StereoModeMonoOnly)
StereoMode_StereoOnlyThe filter is applied only when rendering in stereo. (Symbols - C: "StereoModeStereoOnly", Lua: __ViewShader_StereoModeStereoOnly)

Values for Idx_StereoMode.

enum Target

EnumeratorValueDescription
Target_ViewportThe filter is applied to each viewport immediately after it is drawn, and can use all buffers. (Symbols - C: "TargetViewport", Lua: __ViewShader_TargetViewport)
Target_ViewportAfterHDRThe filter is applied to each viewport after the HDR pass (Symbols - C: "TargetViewportAfterHDR", Lua: __ViewShader_TargetViewportAfterHDR)
Target_WindowThe filter is applied to the entire window after everything including the GUI is drawn, but can use only the colour buffer. (Symbols - C: "TargetWindow", Lua: __ViewShader_TargetWindow)

Values for Idx_Target.