You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
thebookofshaders/glossary/const
Yvan Sraka 2410899756 Remove trailing whitespaces 7 years ago
..
README.md Remove trailing whitespaces 7 years ago

README.md

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