Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 339 Bytes

const.md

File metadata and controls

13 lines (10 loc) · 339 Bytes

Const

Constant qualifier

Example

const float PI = 3.14159265359;

Description

const qualifier can be applied to the declaration of any variable to specify that its value will not be changed.

See also

attribute, uniform, varying