learning_shell_texturing
· 102 B · Text
Brut
void fragment() {
//...
if (hash_result <= shell_height) {
discard;
}
//...
}
| 1 | |
| 2 | void fragment() { |
| 3 | |
| 4 | //... |
| 5 | |
| 6 | if (hash_result <= shell_height) { |
| 7 | discard; |
| 8 | } |
| 9 | |
| 10 | //... |
| 11 | |
| 12 | } |
| 13 |