gds_draw_ext.c 498 B

123456789101112131415161718
  1. /**
  2. * Copyright (c) 2017-2018 Tara Keeling
  3. * 2020 Philippe G.
  4. *
  5. * This software is released under the MIT License.
  6. * https://opensource.org/licenses/MIT
  7. */
  8. #include "gds_private.h"
  9. #include "gds.h"
  10. #include "gds_draw.h"
  11. void IRAM_ATTR GDS_DrawPixelExt( struct GDS_Device* Device, int X, int Y, int Color ){
  12. GDS_DrawPixel( Device, X, Y, Color );
  13. }
  14. void IRAM_ATTR GDS_DrawPixelFastExt( struct GDS_Device* Device, int X, int Y, int Color ){
  15. GDS_DrawPixelFast( Device, X, Y, Color );
  16. }