Advertisement
Guest User

Untitled

a guest
Jan 18th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. static const float VERTS[] = {
  2. 0, 1,
  3. 0, 0,
  4. 1, 1,
  5. 1, 0
  6. };
  7.  
  8. static const float TEXCS[] = {
  9. 0, 1,
  10. 0, 0,
  11. 1, 1,
  12. 1, 0
  13. };
  14.  
  15. static const uint32_t INDICES[] = {
  16. 0, 1, 2, 2, 1, 3
  17. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement