This page has been translated automatically.
UnigineScript
The Language
Core Library
Engine Library
Node-Related Classes
GUI-Related Classes
Plugins Library
High-Level Systems
Samples
Usage Examples
C++ API
API Reference
Integration Samples
Usage Examples
C++ Plugins
Migration
Migrating to UNIGINE 2.0
C++ API Migration
Migrating from UNIGINE 2.0 to UNIGINE 2.1
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

UUSL Semantics

Redefined UUSL semantics allows you to create unified input\output shader structures for both graphics APIs.

Vertex Shader Semantics

Vertex shader semantics contain necessary input and output data for shader. You should initialize variables first and then use them.

UUSLOpenGLDirect3DDescription
INIT_ATTRIBUTE(TYPE,NUM,SEMANTICS)in TYPE s_attribute_ ## NUM;TYPE attribute_ ## NUM : SEMANTICS;Adds a semantic to a vertex shader variable.
INIT_OUT(TYPE,NUM)out TYPE s_texcoord_ ## NUM;TYPE data_ ## NUM : TEXCOORD ## NUM;Adds an output data semantic.
INIT_POSITION-float4 position : SV_POSITION;Adds a position system-value semantic.
INIT_INSTANCE-uint instance : SV_INSTANCEID;Adds a per-instance identifier system-value semantic.

Here is an example of vertex shader input and output structures:

UUSL
// Input vertex data
STRUCT(VERTEX_IN)
	INIT_ATTRIBUTE(float4,0,POSITION)	// Vertex position
	INIT_ATTRIBUTE(float4,1,TEXCOORD0)	// Vertex texcoord (uv)
	INIT_ATTRIBUTE(float4,2,TEXCOORD1)	// Vertex basis tangent
	INIT_ATTRIBUTE(float4,3,TEXCOORD2)	// Vertex color
END

// Our output vertex data
STRUCT(VERTEX_OUT)
	INIT_POSITION		// Out projected position
	INIT_OUT(float4,0)	// Texcoord (uv)
	INIT_OUT(float3,1)	// Vertex direction
END
Warning
You should add a new line (press Enter) after closing the instruction.

Use the following pre-defined variables to use the input\output vertex shader semantics:

UUSLOpenGLDirect3DDescription
IN_INSTANCEgl_InstanceIDinput.instanceAn input per-instance identifier system-value variable.
IN_ATTRIBUTE(NUM)s_attribute_ ## NUMinput.attribute_ ## NUMAn input shader variable.
OUT_DATA(NUM)s_texcoord_ ## NUMoutput.data_ ## NUMAn output texture coordinates variable.
OUT_POSITIONgl_Positionoutput.positionAn output position system-value variable.

Fragment Shader Semantics

Fragment shader semantics contain necessary input and output data for shader. You should initialize variables first and then use them.

UUSLOpenGLDirect3DDescription
INIT_IN(TYPE,NUM)in TYPE s_texcoord_ ## NUM;TYPE data_ ## NUM : TEXCOORD ## NUM;Adds an input texture coordinates semantic.
INIT_COLOR(TYPE)out TYPE s_frag_color;TYPE color : SV_TARGET;Add a output diffuse or specular color semantic (single RT).
INIT_DEPTH-float depth : SV_DEPTH;Add an output depth system-value semantic.
INIT_MRT(TYPE,NUM)out TYPE s_frag_data_ ## NUM;TYPE color_ ## NUM : SV_TARGET ## NUM;Add an output color system-value semantic (some RTs).

To use the variables in the code, use the following variables:

UUSLOpenGLDirect3DDescription
IN_POSITIONgl_FragCoordinput.positionAn input position value.
IN_DATA(NUM)s_texcoord_ ## NUMinput.data_ ## NUMAn input texture coordinates variable.
OUT_COLORs_frag_coloroutput.colorAn output color value (single RT).
OUT_DEPTHgl_FragDepthoutput.depthAn output depth value.
OUT_MRT(NUM)out TYPE s_frag_data_ ## NUM;output.color_ ## NUMAn output color value for MRTs.

Here is a simple example of using the variable in the main function of the shader:

USUL
MAIN_BEGIN(FRAGMENT_OUT,FRAGMENT_IN)
	
	float4 texcoord = IN_DATA(0);

	/* ... other code ... */
END
Warning
You should add a new line (press Enter) after closing the instruction.

Geometry Shader Semantics

UUSLOpenGLDirect3DDescription
INIT_GEOM_IN(TYPE,NUM)in TYPE s_geom_texcoord_ ## NUM[];TYPE data_ ## NUM : TEXCOORD ## NUM;Add an input texture coordinates semantic for the geometry-shader stage.
INIT_GEOM_OUT(TYPE,NUM)out TYPE s_geom_texcoord_ ## NUM;TYPE data_ ## NUM : TEXCOORD ## NUM;Add an output texture coordinates semantic for the geometry-shader stage.
UUSLOpenGLDirect3DDescription
IN_GEOM_DATA(NUM,INDEX)s_geom_texcoord_ ## NUM ## [INDEX]input[INDEX].data_ ## NUMAn input texture coordinates value.
IN_GEOM_POSITION(INDEX) gl_in[INDEX].gl_Positioninput[INDEX].positionAn input position value.
OUT_GEOM_DATA(NUM)s_geom_texcoord_ ## NUMoutput.data_ ## NUMAn output texture coordinates value.
TRIANGLE_INtrianglestriangleInput primitive type: triangle list or triangle strip.
TRIANGLE_OUTtriangle_stripTriangleStreamOutput primitive type: a sequence of triangle primitives
LINE_OUTline_stripLineStreamOutput primitive type: a sequence of line primitives
Last update: 2017-07-03
Build: ()