graphics.c 428 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Graphic Manager - The peTI-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. }
  18. int graphics_drawpixel(long x, long y, long color)
  19. {
  20. }
  21. int graphics_blit(long x, long y, long w, long h)
  22. {
  23. }