Skip to content

Commit

Permalink
Merge branch 'fixes-0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
metaphore committed Sep 23, 2019
2 parents cc70c41 + 442b46b commit 314f92c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions gdx-vfx/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ subprojects {
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

ext {
projectVersion = '0.5.0'
snapshotVersion = true
projectVersion = '0.4.2'
snapshotVersion = false
libVersion = "$projectVersion${snapshotVersion ? '-SNAPSHOT' : ''}"
}

Expand Down
3 changes: 1 addition & 2 deletions gdx-vfx/effects/assets/shaders/copy.frag
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,5 @@ varying vec2 v_texCoords;
uniform sampler2D u_texture0;

void main() {
vec3 col = texture2D(u_texture0,v_texCoords).xyz;
gl_FragColor = vec4(col, 1.0);
gl_FragColor = texture2D(u_texture0,v_texCoords);
}

0 comments on commit 314f92c

Please sign in to comment.