Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update textureGather.xhtml #52

Merged
merged 1 commit into from
Jul 8, 2017
Merged

Update textureGather.xhtml #52

merged 1 commit into from
Jul 8, 2017

Conversation

litasa
Copy link
Contributor

@litasa litasa commented Jul 8, 2017

From #48
Return value is now correct at the last position, according to the Description in the specification

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);

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);
@BSVino BSVino merged commit 0780950 into BSVino:master Jul 8, 2017
@BSVino
Copy link
Owner

BSVino commented Jul 8, 2017

Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants