graphics.c 453 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Graphic Manager - The TI-NESulator Project
  3. * os/macos/graphics.c
  4. *
  5. * Created by Manoel TRAPIER on 08/05/08.
  6. * Copyright (c) 2003-2008 986Corp. All rights reserved.
  7. *
  8. * $LastChangedDate$
  9. * $Author$
  10. * $HeadURL$
  11. * $Revision$
  12. *
  13. */
  14. #include <os_dependent.h>
  15. int graphics_init()
  16. {
  17. return 0;
  18. }
  19. int graphics_drawpixel(long x, long y, long color)
  20. {
  21. return 0;
  22. }
  23. int graphics_blit(long x, long y, long w, long h)
  24. {
  25. return 0;
  26. }