Skip to content
Snippets Groups Projects
Commit eda570d4 authored by David Sehnal's avatar David Sehnal
Browse files

alpha-orbitals: re-enable cutoff in GPU shader

parent d771bdc8
No related branches found
No related tags found
No related merge requests found
...@@ -210,9 +210,9 @@ void main(void) { ...@@ -210,9 +210,9 @@ void main(void) {
float R2 = dot(X, X); float R2 = dot(X, X);
// center.w is squared cutoff radius // center.w is squared cutoff radius
// if (R2 > center.w) { if (R2 > center.w) {
// continue; continue;
// } }
vec4 info = texture2D(tInfo, cCoord); vec4 info = texture2D(tInfo, cCoord);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment