Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

Re : Problem with VertexShader operation

$
0
0
You are applying the projection-modelview matrix two times in your vertex shader:
  1. vec4 pos = projmodelviewMatrix * inVertex;
and
  1. pos = projmodelviewMatrix * position;
That might be causing the problem.

Viewing all articles
Browse latest Browse all 1768

Trending Articles