Skip to content

Commit

Permalink
Update textureGather.xhtml
Browse files Browse the repository at this point in the history
Return value is now correct at last value
from: 
vec4(Sample_i0_j1(P, base).comp,
         Sample_i1_j1(P, base).comp,
         Sample_i1_j0(P, base).comp,
         Sample_i0_j1(P, base).comp);

to:
vec4(Sample_i0_j1(P, base).comp,
         Sample_i1_j1(P, base).comp,
         Sample_i1_j0(P, base).comp,
         Sample_i0_j0(P, base).comp);
  • Loading branch information
litasa authored Jul 8, 2017
1 parent 9f0f36f commit 6dbd185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sl4/textureGather.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
<pre class="programlisting"> vec4(Sample_i0_j1(P, base).comp,
Sample_i1_j1(P, base).comp,
Sample_i1_j0(P, base).comp,
Sample_i0_j1(P, base).comp);</pre>
Sample_i0_j0(P, base).comp);</pre>
<p>
</p>
<p>
Expand Down

0 comments on commit 6dbd185

Please sign in to comment.