uvcoord_zero.pas 504 B

12345678910111213141516171819202122232425262728293031
  1. unit uvcoord_zero;
  2. interface
  3. uses
  4. ctypes;
  5. const
  6. ZERO_BITMAP_WIDTH = 128;
  7. ZERO_BITMAP_HEIGHT = 256;
  8. ZERO_NUM_IMAGES = 10;
  9. var
  10. zero_texcoords: array [1..ZERO_NUM_IMAGES * 4] of cuint = (
  11. 0, 0, 52, 46, // 0
  12. 52, 0, 52, 46, // 1
  13. 0, 46, 52, 46, // 2
  14. 52, 46, 52, 46, // 3
  15. 0, 92, 52, 46, // 4
  16. 52, 92, 52, 46, // 5
  17. 0, 138, 52, 46, // 6
  18. 0, 184, 52, 46, // 7
  19. 52, 138, 52, 46, // 8
  20. 52, 184, 52, 46 // 9
  21. );
  22. implementation
  23. end.