Skip to content

Commit

Permalink
texture coord fix for texture node packer
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-rogovin committed May 13, 2014
1 parent 4b17115 commit 9b24392
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -702,7 +702,7 @@ append_fetch_code(WRATHGLShader::shader_source &src,
<< "\n{"
<< "\n\tmediump float node_texel;"
<< "\n\tnode_texel=("
<< index_name << " + 0.5) / 255.0;";
<< index_name << " + 0.5) / 256.0;";


append_extract_code(spec, ostr);
Expand Down

0 comments on commit 9b24392

Please sign in to comment.