Changeset 2043 for libcaca/trunk/caca/graphics.c
- Timestamp:
- Nov 24, 2007, 12:08:21 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/graphics.c
r2040 r2043 65 65 * \return The display width. 66 66 */ 67 unsigned int caca_get_display_width(caca_display_t *dp)67 unsigned int caca_get_display_width(caca_display_t const *dp) 68 68 { 69 69 return dp->drv.get_display_width(dp); … … 82 82 * \return The display height. 83 83 */ 84 unsigned int caca_get_display_height(caca_display_t *dp)84 unsigned int caca_get_display_height(caca_display_t const *dp) 85 85 { 86 86 return dp->drv.get_display_height(dp); … … 121 121 * \return The render time in microseconds. 122 122 */ 123 unsigned int caca_get_display_time(caca_display_t *dp)123 unsigned int caca_get_display_time(caca_display_t const *dp) 124 124 { 125 125 return dp->rendertime;
Note: See TracChangeset
for help on using the changeset viewer.