thebookofshaders/glossary/const
2020-07-30 14:03:05 +07:00
..
README-vi.md Translate glossary section (partly) and swap all/any page 2020-07-30 14:03:05 +07:00
README.md Remove trailing whitespaces 2017-08-23 11:34:44 +02:00

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