From 6dbd185ffb093a2a723cc8314db0cfb735647296 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20T=C3=B6rm=C3=A4=20Ruhl?= Date: Sat, 8 Jul 2017 15:57:35 +0200 Subject: [PATCH] Update textureGather.xhtml 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); --- sl4/textureGather.xhtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sl4/textureGather.xhtml b/sl4/textureGather.xhtml index 3a5de868..2c5ef20e 100644 --- a/sl4/textureGather.xhtml +++ b/sl4/textureGather.xhtml @@ -244,7 +244,7 @@
    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);
+ Sample_i0_j0(P, base).comp);