Guest User

Untitled

a guest
May 22nd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. I/System.out(24678): attribute vec4 a_position;
  2. I/System.out(24678): attribute vec3 a_normal;
  3. I/System.out(24678): //attribute vec4 a_color;
  4. I/System.out(24678): attribute vec2 a_texCoord0;
  5. I/System.out(24678): uniform mat4 u_projectionViewMatrix;
  6. I/System.out(24678): varying vec4 v_color;
  7. I/System.out(24678): varying vec2 v_texCoords;
  8. I/System.out(24678): varying vec3 v_normal;
  9. I/System.out(24678): varying vec3 v_pos;
  10. I/System.out(24678): void main()
  11. I/System.out(24678): {
  12. I/System.out(24678): //v_color = vec4(0.5,0.75,0.5,0.5);
  13. I/System.out(24678): v_texCoords = a_texCoord0;
  14. I/System.out(24678): v_normal = a_normal;
  15. I/System.out(24678): v_pos = a_position.xyz;
  16. I/System.out(24678): gl_Position = u_projectionViewMatrix * a_position;
  17. I/System.out(24678): }
  18. I/Launcher( 5814): onWindowFocusChanged(false)
  19. I/System.out(24678): Compile failed.
  20. I/System.out(24678): ERROR: 0:2: 'vec3' : No precision defined for this type
  21. I/System.out(24678): ERROR: 0:3: 'vec3' : No precision defined for this type
  22. I/System.out(24678): ERROR: 0:5: 'vec3' : No precision defined for this type
  23. I/System.out(24678): ERROR: 0:6: 'vec2' : No precision defined for this type
  24. I/System.out(24678): ERROR: 0:7: 'vec3' : No precision defined for this type
  25. I/System.out(24678): ERROR: 0:10: 'vec4' : No precision defined for this type
  26. I/System.out(24678): ERROR: 0:11: 'vec4' : No precision defined for this type
  27. I/System.out(24678): ERROR: 0:12: 'float' : No precision defined for this type
  28. I/System.out(24678): ERROR: 0:13: 'vec4' : No precision defined for this type
  29. I/System.out(24678): ERROR: 0:17: 'vec3' : No precision defined for this type
  30. I/System.out(24678): ERROR: 0:18: 'float' : No precision defined for this type
  31. I/System.out(24678): ERROR: 0:19: 'vec3' : No precision defined for this type
  32. I/System.out(24678): ERROR: 0:20: 'float' : No precision defined for this type
  33. I/System.out(24678): ERROR: 0:22: 'vec3' : No precision defined for this type
  34. I/System.out(24678): ERROR: 0:24: 'float' : No precision defined for this type
  35. I/System.out(24678): ERROR: 0:27: 'vec3' : No precision defined for this type
  36. I/System.out(24678): ERROR: 0:28: 'vec3' : No precision defined for this type
  37. I/System.out(24678): ERROR: 0:30: 'float' : No precision defined for this type
  38. I/System.out(24678): ERROR: 0:35: 'vec4' : No precision defined for this type
  39. I/System.out(24678): ERROR: 19 compilation errors. No code generated.
Add Comment
Please, Sign In to add comment