learning_shell_texturing.cpp
· 101 B · C++
原始文件
void fragment() {
//...
if (hash_result <= shell_height) {
discard;
}
//...
}
| 1 | void fragment() { |
| 2 | |
| 3 | //... |
| 4 | |
| 5 | if (hash_result <= shell_height) { |
| 6 | discard; |
| 7 | } |
| 8 | |
| 9 | //... |
| 10 | |
| 11 | } |
| 12 |