README 754 B

1234567891011121314151617181920
  1. Usage: ./objcompress in.obj [out.utf8]
  2. If 'out' is specified, then attempt to write out a compressed,
  3. UTF-8 version to 'out.'
  4. If not, write a JSON version to STDOUT.
  5. Usage: ./objanalyze in.obj [list of cache sizes]
  6. Perform vertex cache analysis on in.obj using specified sizes.
  7. For example: ./objanalyze in.obj 6 16 24 32
  8. Maximum cache size is 32.
  9. Building:
  10. Since there are no external dependences outside of the C/C++ standard
  11. libraries, you can pretty much build this however you please. I've
  12. included a cheeky way to do this on POSIX-like systems by including a
  13. build shell script at the top of the file itself. You can build by
  14. making the .cc file executable, and running it on the command line.