Ignore:
Timestamp:
11/04/07 13:00:00 (6 years ago)
Author:
sam
Message:
  • Renamed cucul_set_dither_mode() into cucul_set_dither_algorithm(). It’s a longer name but "mode" really wasn’t appropriate here.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcaca/trunk/cucul/legacy.c

    r1870 r1881  
    7676} 
    7777 
     78int cucul_set_dither_mode(cucul_dither_t *d, char const *s) 
     79{ 
     80    return cucul_set_dither_algorithm(d, s); 
     81} 
     82 
     83char const * const * cucul_get_dither_mode_list(cucul_dither_t const *d) 
     84{ 
     85    return cucul_get_dither_algorithm_list(d); 
     86} 
     87 
    7888/* 
    7989 * Functions from import.c 
Note: See TracChangeset for help on using the changeset viewer.