X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=sor.frag;h=9a8e1e40aa0a32490091c5e2eb7b1b671ad3ff2e;hb=3795723be95f2fe82f3c8b8b45b1a905b2c811fd;hp=ef431d3346d96be4e0270ddd6ad4c9ebd1664a63;hpb=ab3b838374200c9050ac57c53d3c183fbb58a7be;p=nageru diff --git a/sor.frag b/sor.frag index ef431d3..9a8e1e4 100644 --- a/sor.frag +++ b/sor.frag @@ -1,15 +1,15 @@ #version 450 core -in vec2 tc, tc_left, tc_down; -in vec2 equation_tc_assuming_left, equation_tc_assuming_right; +in vec3 tc, tc_left, tc_down; +in vec3 equation_tc_assuming_left, equation_tc_assuming_right; in float element_x_idx, element_sum_idx; out vec2 diff_flow; -uniform sampler2D diff_flow_tex, diffusivity_tex; -uniform usampler2D equation_red_tex, equation_black_tex; +uniform sampler2DArray diff_flow_tex, diffusivity_tex; +uniform usampler2DArray equation_red_tex, equation_black_tex; uniform int phase; -uniform bool zero_diff_flow; +uniform int num_nonzero_phases; // See pack_floats_shared() in equations.frag. vec2 unpack_floats_shared(uint c) @@ -52,7 +52,7 @@ void main() if (color != phase) discard; uvec4 equation; - vec2 equation_tc; + vec3 equation_tc; if ((int(round(element_x_idx)) & 1) == 0) { equation_tc = equation_tc_assuming_left; } else { @@ -70,7 +70,7 @@ void main() const float omega = 1.8; // Marginally better than 1.6, it seems. - if (zero_diff_flow) { + if (num_nonzero_phases == 0) { // Simplified version of the code below, assuming diff_flow == 0.0f everywhere. diff_flow.x = omega * b.x * inv_A11; diff_flow.y = omega * b.y * inv_A22; @@ -87,7 +87,12 @@ void main() b += smooth_r * textureOffset(diff_flow_tex, tc, ivec2( 1, 0)).xy; b += smooth_d * textureOffset(diff_flow_tex, tc, ivec2( 0, -1)).xy; b += smooth_u * textureOffset(diff_flow_tex, tc, ivec2( 0, 1)).xy; - diff_flow = texture(diff_flow_tex, tc).xy; + + if (num_nonzero_phases == 1) { + diff_flow = vec2(0.0f); + } else { + diff_flow = texture(diff_flow_tex, tc).xy; + } // From https://en.wikipedia.org/wiki/Successive_over-relaxation. float sigma_u = A12 * diff_flow.y;