graphics.c 344 B

123456789101112131415161718192021222324
  1. /*
  2. * Graphic Manager - The peTI-NESulator Project
  3. * os/macos/graphics.c
  4. *
  5. * Created by Manoël Trapier on 08/05/08.
  6. * Copyright (c) 2002-2019 986-Studio.
  7. *
  8. */
  9. #include <os_dependent.h>
  10. int graphics_init()
  11. {
  12. }
  13. int graphics_drawpixel(long x, long y, long color)
  14. {
  15. }
  16. int graphics_blit(long x, long y, long w, long h)
  17. {
  18. }