Changeset 773 for libcaca/trunk/caca
- Timestamp:
- Apr 14, 2006, 2:10:18 PM (15 years ago)
- Location:
- libcaca/trunk/caca
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca/caca.c
r769 r773 99 99 * attached to it afterwards. 100 100 * 101 * \param qq Thecaca graphical context.101 * \param kk The libcaca graphical context. 102 102 */ 103 103 void caca_detach(caca_t *kk) -
libcaca/trunk/caca/caca.h
r769 r773 78 78 #define __CACA_H__ 79 79 80 /** libcaca API version */ 80 81 #define CACA_API_VERSION_1 81 82 -
libcaca/trunk/caca/event.c
r769 r773 51 51 * function to wait indefinitely until a matching event is received. 52 52 * 53 * \param event_mask Bitmask of requested events. 54 * \param timeout A timeout value in microseconds 55 * \return The next matching event in the queue, or 0 if no event is pending. 53 * \param kk The libcaca graphical context. 54 * \param event_mask Bitmask of requested events. 55 * \param timeout A timeout value in microseconds 56 * \param ev A pointer to a caca_event structure. 57 * \return The next matching event in the queue, or 0 if no event is pending. 56 58 */ 57 59 int caca_get_event(caca_t *kk, unsigned int event_mask, … … 107 109 * the mouse is clicked. Other drivers such as X11 work well. 108 110 * 111 * \param kk The libcaca graphical context. 109 112 * \return The X mouse coordinate. 110 113 */ … … 124 127 * the mouse is clicked. Other drivers such as X11 work well. 125 128 * 129 * \param kk The libcaca graphical context. 126 130 * \return The Y mouse coordinate. 127 131 */ -
libcaca/trunk/caca/graphics.c
r769 r773 28 28 * the X11 and Win32 drivers. 29 29 * 30 * \param kk The libcaca graphical context. 30 31 * \param title The desired window title. 31 32 * \return 0 upon success, a non-zero value if an error occurs. … … 43 44 * 6x10 font is being used. Note that the units are not necessarily pixels. 44 45 * 46 * \param kk The libcaca graphical context. 45 47 * \return The window width. 46 48 */ … … 57 59 * used. Note that the units are not necessarily pixels. 58 60 * 61 * \param kk The libcaca graphical context. 59 62 * \return The window height. 60 63 */ … … 73 76 * default behaviour. 74 77 * 78 * \param kk The libcaca graphical context. 75 79 * \param usec The refresh delay in microseconds. 76 80 */ … … 88 92 * even if the real rendering time was shorter. 89 93 * 94 * \param kk The libcaca graphical context. 90 95 * \return The render time in microseconds. 91 96 */ … … 106 111 * set with caca_set_delay(), the second call will wait a bit before 107 112 * performing the screen refresh. 113 * 114 * \param kk The libcaca graphical context. 108 115 */ 109 116 void caca_display(caca_t *kk) … … 147 154 * support it. 148 155 * 156 * \param kk The libcaca graphical context. 149 157 * \param flag 0 hides the pointer, 1 shows the system's default pointer 150 158 * (usually an arrow). Other values are reserved for future use.
Note: See TracChangeset
for help on using the changeset viewer.