mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-11 13:10:57 +00:00
14 lines
352 B
Markdown
14 lines
352 B
Markdown
## Const
|
|
Constant qualifier
|
|
|
|
### Example
|
|
```glsl
|
|
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](/glossary/?search=attribute), [uniform](/glossary/?search=uniform), [varying](/glossary/?search=varying)
|