mirror of
https://github.com/patriciogonzalezvivo/thebookofshaders
synced 2024-11-11 13:10:57 +00:00
14 lines
367 B
Markdown
14 lines
367 B
Markdown
## Const
|
|
Qualifier đánh dấu một hằng số
|
|
|
|
### Ví dụ
|
|
```glsl
|
|
const float PI = 3.14159265359;
|
|
```
|
|
|
|
### Mô tả
|
|
```const``` khiến cho giá trị của một biến không thể bị thay đổi
|
|
|
|
### Tham khảo thêm
|
|
[attribute](/glossary/?lan=vi&search=attribute), [uniform](/glossary/?lan=vi&search=uniform), [varying](/glossary/?lan=vi&search=varying)
|