sw_cores.h 430 B

1234567891011121314151617181920
  1. // This file is Copyright (c) 2023 Victor Suarez Rovere <suarezvictor@gmail.com>
  2. // SPDX-License-Identifier: AGPL-3.0-only
  3. #ifndef __SW_CORES_H__
  4. #define __SW_CORES_H__
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. void sw_rectangle_fill(accel_rectangle_fill32_layout_t *regs);
  9. void sw_ellipse_fill(accel_ellipse_fill32_layout_t *regs);
  10. void sw_line(accel_line32_layout_t *regs);
  11. #ifdef __cplusplus
  12. }
  13. #endif
  14. #endif //__SW_CORES_H__