Module: Gsk::GLUniformType

Defined in:
(unknown)

Constant Summary collapse

NONE =

No type, used for uninitialized or unspecified values.

0 or :none
FLOAT =

A float uniform

1 or :float
INT =

A GLSL int / gint32 uniform

2 or :int
UINT =

A GLSL uint / guint32 uniform

3 or :uint
BOOL =

A GLSL bool / gboolean uniform

4 or :bool
VEC2 =

A GLSL vec2 / graphene_vec2_t uniform

5 or :vec2
VEC3 =

A GLSL vec3 / graphene_vec3_t uniform

6 or :vec3
VEC4 =

A GLSL vec4 / graphene_vec4_t uniform

7 or :vec4