Ignore:
Timestamp:
Nov 15, 2003, 10:58:20 AM (19 years ago)
Author:
Sam Hocevar
Message:
  • libee/graphics.c: + Correct clipping in ee_putstr() for long strings.
  • libee/ee.c: + New ee_get_rendertime() call to provide framerate information.
  • libee/ee.h: + Added const keywords where it was meaningful, despite Slang's blatant

omission of such keywords in its prototypes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/libee/line.c

    r165 r179  
    6969}
    7070
    71 void ee_draw_polyline(int x[], int y[], int n, char c)
     71void ee_draw_polyline(const int x[], const int y[], int n, char c)
    7272{
    7373    int i;
     
    106106}
    107107
    108 void ee_draw_thin_polyline(int x[], int y[], int n)
     108void ee_draw_thin_polyline(const int x[], const int y[], int n)
    109109{
    110110    int i;
Note: See TracChangeset for help on using the changeset viewer.