Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516
  1. /* PASS */
  2. vec4 foo(in float x, in float y, float z, float w)
  3. {
  4. vec4 v;
  5. v.x = x;
  6. v.y = y;
  7. v.z = z;
  8. v.w = w;
  9. return v;
  10. }
  11. void main()
  12. {
  13. gl_Position = foo(1.0, 1.0, 1.0, 0.0);
  14. }